diff --git a/home.nix b/home.nix index eaca3c9..5c57d7f 100644 --- a/home.nix +++ b/home.nix @@ -38,7 +38,6 @@ home.packages = with pkgs; [ htop ripgrep - ghostty fd bat ]; diff --git a/nixos.nix b/nixos.nix index 633fec9..af0cc98 100644 --- a/nixos.nix +++ b/nixos.nix @@ -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" ];