diff --git a/config.nix b/config.nix index 63a0e01..44e3c36 100644 --- a/config.nix +++ b/config.nix @@ -1,6 +1,6 @@ { general = { - Hostname = "TEXAS"; + Hostname = "hakase"; Username = "lsoriano"; Timezone = "America/Chicago"; @@ -24,7 +24,7 @@ }; gitProfile = { User = "kenji"; - Email = "kenji@texas.sakamoto.dev"; + Email = "kenji@sakamoto.dev"; defaultBranch = "master"; }; ssh = { diff --git a/flake.nix b/flake.nix index 361ef24..1abccc3 100644 --- a/flake.nix +++ b/flake.nix @@ -58,13 +58,6 @@ ./hosts/desktop/configuration.nix ]; }; - gaming = lib.nixosSystem { - inherit system; - specialArgs = args; - modules = [ - ./hosts/gaming/configuration.nix - ]; - }; headless = lib.nixosSystem { inherit system; specialArgs = args; diff --git a/home/gaming.nix b/home/gaming.nix deleted file mode 100644 index aa28d30..0000000 --- a/home/gaming.nix +++ /dev/null @@ -1,16 +0,0 @@ -{general, ...}: { - imports = [ - ]; - - programs.home-manager.enable = true; - - home = { - username = "${general.Username}"; - homeDirectory = "/home/${general.Username}"; - packages = []; - sessionVariables = {}; - }; - - systemd.user.startServices = "sd-switch"; - home.stateVersion = "23.05"; -} diff --git a/hosts/gaming/configuration.nix b/hosts/gaming/configuration.nix deleted file mode 100644 index eb483d1..0000000 --- a/hosts/gaming/configuration.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ - pkgs, - general, - builds, - inputs, - ... -}: { - imports = [ - # Include the results of the hardware scan. - ./hardware-configuration.nix - ]; - - environment.systemPackages = with pkgs; []; - - nixpkgs.config.allowUnfree = general.allowUnfree; - - nix.settings = { - trusted-users = builds.builder.trustedUsers; - experimental-features = ["nix-command" "flakes"]; - }; - - programs.ssh.extraConfig = general.ssh.extraConfig; - - nix.distributedBuilds = true; - nix.settings.builders-use-substitutes = true; - - # nix.buildMachines = builder.buildMachines; - system.stateVersion = "25.05"; -} diff --git a/system/gaming.nix b/system/gaming.nix index 35cce13..0f3ff99 100644 --- a/system/gaming.nix +++ b/system/gaming.nix @@ -6,6 +6,8 @@ environment.systemPackages = [ # or home.packages inputs.nix-gaming.packages.${pkgs.system}.wine # installs a package + pkgs.steam + pkgs.protonup-qt ]; programs.steam.platformOptimizations.enable = true; }