diff options
author | Azat Bahawi <azat@bahawi.net> | 2023-05-21 23:10:32 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2023-05-21 23:10:32 +0300 |
commit | b07e10139c88d6060e57ca52b2dc12b17b53ac82 (patch) | |
tree | 5b5cddc2f47bddb8e8914aa66ae18d52cd519965 /modules/nixos/common | |
parent | 2023-05-06 (diff) |
2023-05-21
Diffstat (limited to '')
-rw-r--r-- | modules/nixos/common/locale.nix | 12 | ||||
-rw-r--r-- | modules/nixos/common/systemd.nix | 2 |
2 files changed, 11 insertions, 3 deletions
diff --git a/modules/nixos/common/locale.nix b/modules/nixos/common/locale.nix index 62d19f4..7529996 100644 --- a/modules/nixos/common/locale.nix +++ b/modules/nixos/common/locale.nix @@ -12,9 +12,15 @@ with lib; { }; services.xserver = { - layout = comcat ["us" "ru"]; - xkbVariant = comcat ["" "phonetic"]; - xkbOptions = comcat [ + layout = concatStringsSep "," [ + "us" + "ru" + ]; + xkbVariant = concatStringsSep "," [ + "" + "phonetic" + ]; + xkbOptions = concatStringsSep "," [ "terminate:ctrl_alt_bksp" "caps:escape" "compose:menu" diff --git a/modules/nixos/common/systemd.nix b/modules/nixos/common/systemd.nix index 29020a0..4e9eb26 100644 --- a/modules/nixos/common/systemd.nix +++ b/modules/nixos/common/systemd.nix @@ -4,6 +4,8 @@ directories = ["/var/lib/systemd/coredump"]; }; + my.extraGroups = ["systemd-journal"]; + hm.systemd.user.startServices = "sd-switch"; services.journald.extraConfig = '' |