This commit is contained in:
4DBug
2026-02-27 11:53:10 -06:00
parent 84974b56ad
commit 8ff72d5c6a
5 changed files with 22 additions and 16 deletions

View File

@@ -0,0 +1,3 @@
{
}

View File

@@ -9,13 +9,7 @@ in {
nix.users.bug = bug;
laptop.users.bug = bug;
box.users.bug = bug;
box.users.levi = {
isNormalUser = true;
description = "levi";
group = "levi";
};
};
den.homes.x86_64-linux.bug = { aspect = "bug"; };
den.homes.x86_64-linux.levi = { aspect = "levi"; };
}

View File

@@ -33,6 +33,14 @@
nixos = {
networking.hostName = "box";
users.users.levi = {
isNormalUser = true;
description = "levi";
extraGroups = [];
hashedPasswordFile = "/home/bug/users/levi.passwd";
};
};
};
}

View File

@@ -0,0 +1,11 @@
{
den.aspects.librewolf = {
homeManager = { pkgs, ... }: {
home = {
packages = with pkgs; [
librewolf
];
};
};
};
}

View File

@@ -1,10 +0,0 @@
{ den, ... }: {
den.aspects.levi = {
includes = [
den.provides.primary-user
(den.provides.user-shell "fish")
];
user.hashedPasswordFile = "/home/bug/users/levi.passwd";
};
}