best practices: get rid of with pkgs;

This commit is contained in:
2024-11-09 15:33:03 -06:00
parent ebcab67a6a
commit 120d485f28
33 changed files with 418 additions and 317 deletions

View File

@@ -12,8 +12,10 @@
enable = true;
style = "adwaita";
};
users.users.jawz.packages = with pkgs; [
adw-gtk3 # theme legacy applications
papirus-icon-theme # icon theme
];
users.users.jawz.packages = builtins.attrValues {
inherit (pkgs)
adw-gtk3 # theme legacy applications
papirus-icon-theme # icon theme
;
};
}