aboutsummaryrefslogtreecommitdiff
path: root/nixos/modules
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/desktop.nix2
-rw-r--r--nixos/modules/gaming.nix2
-rw-r--r--nixos/modules/generic.nix2
3 files changed, 4 insertions, 2 deletions
diff --git a/nixos/modules/desktop.nix b/nixos/modules/desktop.nix
index 774353f..fbd6a75 100644
--- a/nixos/modules/desktop.nix
+++ b/nixos/modules/desktop.nix
@@ -315,7 +315,7 @@ in {
earlySetup = true;
useXkbConfig = true;
};
- services.xserver.xkbOptions = "grp:alt_shift_toggle,caps:escape";
+ services.xserver.xkb.options = "grp:alt_shift_toggle,caps:escape";
services.gpm.enable = true;
services.locate.enable = true;
diff --git a/nixos/modules/gaming.nix b/nixos/modules/gaming.nix
index cbf2d10..9ab5737 100644
--- a/nixos/modules/gaming.nix
+++ b/nixos/modules/gaming.nix
@@ -18,6 +18,8 @@ in {
config = mkIf cnf {
cynerd.desktop.enable = true;
+ environment.systemPackages = [pkgs.heroic];
+
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
diff --git a/nixos/modules/generic.nix b/nixos/modules/generic.nix
index e8cc563..8ef616e 100644
--- a/nixos/modules/generic.nix
+++ b/nixos/modules/generic.nix
@@ -8,7 +8,7 @@
isNative = config.nixpkgs.hostPlatform == config.nixpkgs.buildPlatform;
in {
config = {
- system.stateVersion = "23.11";
+ system.stateVersion = "24.05";
nix = {
extraOptions = "experimental-features = nix-command flakes";