Switch Vanguard back to being a gamescope/steam machine, enable autoUpdates since it will mostly run without kb+m

This commit is contained in:
Evie Litherland-Smith 2023-12-25 19:43:02 +00:00
parent f1525ef8ee
commit cdf23caa90
2 changed files with 9 additions and 8 deletions

View file

@ -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 ];
};
};

View file

@ -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;
};
}