diff --git a/modules/core/theme/stylus.nix b/modules/core/theme/stylus.nix index e69de29..0db3279 100644 --- a/modules/core/theme/stylus.nix +++ b/modules/core/theme/stylus.nix @@ -0,0 +1,3 @@ +{ + +} diff --git a/modules/hosts.nix b/modules/hosts.nix index 959e477..6bb7d4b 100644 --- a/modules/hosts.nix +++ b/modules/hosts.nix @@ -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"; }; } diff --git a/modules/hosts/box/box.nix b/modules/hosts/box/box.nix index 088b87a..764a10a 100644 --- a/modules/hosts/box/box.nix +++ b/modules/hosts/box/box.nix @@ -33,6 +33,14 @@ nixos = { networking.hostName = "box"; + + users.users.levi = { + isNormalUser = true; + description = "levi"; + extraGroups = []; + + hashedPasswordFile = "/home/bug/users/levi.passwd"; + }; }; }; } diff --git a/modules/software/librewolf.nix b/modules/software/librewolf.nix new file mode 100644 index 0000000..3db5b1c --- /dev/null +++ b/modules/software/librewolf.nix @@ -0,0 +1,11 @@ +{ + den.aspects.librewolf = { + homeManager = { pkgs, ... }: { + home = { + packages = with pkgs; [ + librewolf + ]; + }; + }; + }; +} diff --git a/modules/users/levi.nix b/modules/users/levi.nix deleted file mode 100644 index 4ba68e5..0000000 --- a/modules/users/levi.nix +++ /dev/null @@ -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"; - }; -}