Update FredOS-Gaming.nix

This commit is contained in:
ediblerope 2025-12-04 13:32:18 +00:00 committed by GitHub
parent ede4532624
commit c8f3bd9bc9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,11 +1,7 @@
# hosts/FredOS-Gaming.nix # hosts/FredOS-Gaming.nix
{ config, pkgs, lib, ... }: { config, pkgs, lib, ... }:
{ {
imports = lib.optionals (config.networking.hostName == "FredOS-Gaming") [ config = lib.mkIf (config.networking.hostName == "FredOS-Gaming") {
../settings/gnome.nix
];
config = lib.mkIf (config.networking.hostName == "FredOS-Gaming") {
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
@ -34,5 +30,5 @@
"--option" "tarball-ttl" "0" "--option" "tarball-ttl" "0"
]; ];
}; };
}; };
} }