diff --git a/flake.nix b/flake.nix index 0123caf8..14d92518 100644 --- a/flake.nix +++ b/flake.nix @@ -259,8 +259,8 @@ system = "x86_64-linux"; in systemConfig { inherit hostName user system; - systemModules = default.systemModules ++ [ ./system/steam.nix ]; - homeModules = default.homeModules ++ [ ./home/games/default.nix ]; + systemModules = [ ./system/gamescope.nix ]; + homeModules = [ ./home/default.nix ./home/games/default.nix ]; }; }; diff --git a/hosts/Vanguard/configuration.nix b/hosts/Vanguard/configuration.nix index dd5f6f5c..2248651c 100644 --- a/hosts/Vanguard/configuration.nix +++ b/hosts/Vanguard/configuration.nix @@ -1,6 +1,7 @@ -# Edit this configuration file to define what should be installed on -# your system. Help is available in the configuration.nix(5) man page -# and in the NixOS manual (accessible by running ‘nixos-help’). -{ ... }: - -{ } +{ ... }: { + system.autoUpgrade = { + enable = true; + flake = "git+https://git.xenia.me.uk/xenia/nixos.git?ref=main"; + allowReboot = true; + }; +} \ No newline at end of file