diff --git a/README.md b/README.md index dfbbeeb..4708941 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,6 @@ | ------- | ------- | ---------------------------------------- | | marr | x86_64 | Laptop Workstation | | brontes | x86_64 | Desktop Workstation | -| styrax | x86_64 | | | raptus | x86_64 | | | nihilus | aarch64 | Small Pi used to make "off-site" backups | diff --git a/hosts/brontes/default.nix b/hosts/brontes/default.nix index 36c9261..157ad00 100644 --- a/hosts/brontes/default.nix +++ b/hosts/brontes/default.nix @@ -2,7 +2,6 @@ { pkgs, config, - inputs', ... }: let @@ -116,17 +115,16 @@ in users = { defaultUserShell = pkgs.fish; users.${username} = { - packages = [ - inputs'.nur.packages.grayjay-desktop - ]; isNormalUser = true; createHome = true; + packages = with pkgs; [ + prismlauncher + orca-slicer + ]; extraGroups = [ "networkmanager" - "wheel" "audio" "libvirtd" # VM OPs - "dialout" # Necessary for serial port interactions ]; }; }; diff --git a/hosts/brontes/home.nix b/hosts/brontes/home.nix index d45ddb5..62ea257 100644 --- a/hosts/brontes/home.nix +++ b/hosts/brontes/home.nix @@ -1,5 +1,4 @@ { - pkgs, config, inputs, ... @@ -36,55 +35,8 @@ in }; home = { - stateVersion = config.system.stateVersion; + inherit (config.system) stateVersion; inherit username; - - packages = with pkgs; [ - keepassxc - digikam - fragments - element-desktop - libreoffice - loupe - seahorse - gimp - pwvucontrol - thunderbird - keepassxc - protonmail-bridge-gui - varia - signal-desktop - tagger - prismlauncher - orca-slicer - - kid3 - soundconverter - - # proprietary - obsidian - - # CLI tools - jhead - fdupes - exiftool - sshfs - lazygit - wl-clipboard - - # custom - nysh - scripts.nixedit - scripts.set-background - scripts.fishl - scripts.nrun - scripts.rpaste - scripts.genswitch - scripts.gentest - scripts.editsym - scripts.deployswitch - scripts.deploytest - ]; }; }; } diff --git a/users/ny/default.nix b/users/ny/default.nix index a70cc68..e52909e 100644 --- a/users/ny/default.nix +++ b/users/ny/default.nix @@ -1,7 +1,16 @@ -{ lib, ... }: +{ + lib, + inputs', + pkgs, + config, + ... +}: +let + inherit (config.modules.meta) username; +in { hjem = { - users.ny = { + users.${username} = { enable = true; imports = [ ./programs ]; }; @@ -10,4 +19,48 @@ }; clobberByDefault = true; }; + + users.users.${username}.packages = + [ + inputs'.nur.packages.grayjay-desktop + ] + ++ (with pkgs; [ + keepassxc + digikam + fragments + element-desktop + libreoffice + loupe + seahorse + pwvucontrol + thunderbird + keepassxc + protonmail-bridge-gui + signal-desktop + tagger + kid3 + + # proprietary + obsidian + + # CLI tools + jhead + fdupes + exiftool + sshfs + wl-clipboard + + # custom + nysh + scripts.nixedit + scripts.set-background + scripts.fishl + scripts.nrun + scripts.rpaste + scripts.genswitch + scripts.gentest + scripts.editsym + scripts.deployswitch + scripts.deploytest + ]); }