aboutsummaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2024-01-31 15:39:50 +0100
committerKarel Kočí <cynerd@email.cz>2024-01-31 15:39:50 +0100
commitf05af2ffb98f00d269d7e81e8ef1a3e2ea67d04c (patch)
tree7c5b2bb37438c4aec2ad2de75801112a17fb3f06 /nixos
parent84ebec29f2fa351d16085b78910bca34db9c16ae (diff)
downloadnixos-personal-f05af2ffb98f00d269d7e81e8ef1a3e2ea67d04c.tar.gz
nixos-personal-f05af2ffb98f00d269d7e81e8ef1a3e2ea67d04c.tar.bz2
nixos-personal-f05af2ffb98f00d269d7e81e8ef1a3e2ea67d04c.zip
nixos: tweaks and update
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";