diff options
-rw-r--r-- | system/settings/hardware/keyboard.nix | 6 | ||||
-rw-r--r-- | system/settings/services/zeroconf.nix | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/system/settings/hardware/keyboard.nix b/system/settings/hardware/keyboard.nix index 20030760..c6241f8f 100644 --- a/system/settings/hardware/keyboard.nix +++ b/system/settings/hardware/keyboard.nix @@ -2,9 +2,9 @@ , pkgs , ... }: { - services.xserver = { + services.xserver.xkb = { layout = "us,de"; - xkbVariant = "intl-unicode,nodeadkeys"; - xkbOptions = "altwin:prtsc_rwin,caps:escape_shifted_capslock"; + variant = "intl-unicode,nodeadkeys"; + options = "altwin:prtsc_rwin,caps:escape_shifted_capslock"; }; } diff --git a/system/settings/services/zeroconf.nix b/system/settings/services/zeroconf.nix index 70b70b20..ec917391 100644 --- a/system/settings/services/zeroconf.nix +++ b/system/settings/services/zeroconf.nix @@ -5,7 +5,7 @@ }: { services.avahi = { enable = true; - nssmdns = true; + nssmdns4 = true; ipv6 = true; publish = { enable = true; |