This commit is contained in:
4DBug
2026-02-27 10:59:22 -06:00
parent 1583ad75ee
commit 84974b56ad
6 changed files with 57 additions and 14 deletions

View File

@@ -4,7 +4,7 @@
in {
den.aspects.catppuccin = {
nixos = {
imports = [ inputs.nix-flatpak.nixosModules.nix-flatpak ];
imports = [ inputs.catppuccin.nixosModules.catppuccin ];
catppuccin = {
enable = true;
@@ -17,7 +17,7 @@ in {
};
homeManager = {
imports = [ inputs.catppuccin.nixosModules.catppuccin ];
imports = [ inputs.catppuccin.homeModules.catppuccin ];
catppuccin = {
enable = true;

View File

View File

@@ -9,7 +9,13 @@ 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

@@ -3,7 +3,7 @@
den.aspects.box = {
includes = with den.aspects; [
den.default
# den.provides.home-manager
den.provides.home-manager
syncthing
fish
@@ -33,14 +33,6 @@
nixos = {
networking.hostName = "box";
users.users.levi = {
isNormalUser = true;
description = "levi";
extraGroups = [];
hashedPasswordFile = "/home/bug/users/levi.passwd";
};
};
};
}

10
modules/users/levi.nix Normal file
View File

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