Fix pkgs evaluation scope

This commit is contained in:
2025-12-17 13:19:23 -05:00
parent 86d2d2b0df
commit b778c7fa22
2 changed files with 3 additions and 5 deletions

View File

@@ -38,7 +38,6 @@
home.packages = with pkgs; [
htop
ripgrep
ghostty
fd
bat
];

View File

@@ -35,10 +35,9 @@
# };
# };
# Example: Install system-wide packages needed by this user
# environment.systemPackages = with pkgs; [
# docker
# ];
environment.systemPackages = with pkgs; [
] ++ lib.optional (config.ugaif.sw.type == "desktop") ghostty;
# Example: Add user to additional groups
# users.users.myusername.extraGroups = [ "docker" ];