aboutsummaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
Diffstat (limited to 'nixos')
-rw-r--r--nixos/machine/lipwig.nix2
-rw-r--r--nixos/modules/desktop.nix2
-rw-r--r--nixos/modules/gaming.nix2
-rw-r--r--nixos/modules/generic.nix2
4 files changed, 5 insertions, 3 deletions
diff --git a/nixos/machine/lipwig.nix b/nixos/machine/lipwig.nix
index 5b1a369..188a097 100644
--- a/nixos/machine/lipwig.nix
+++ b/nixos/machine/lipwig.nix
@@ -147,7 +147,7 @@
dbhost = "/run/postgresql";
dbtableprefix = "oc_";
};
- extraOptions = {
+ settings = {
#log_type = "systemd";
default_phone_region = "CZ";
};
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";