diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-09-11 17:40:08 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-09-14 22:20:52 +0200 |
commit | 004d54e9fe6880edabcf18cb0ae7c9a86bb28e85 (patch) | |
tree | 133e4748410224ffe2f0db4016a36da633a073dd /hosts/configuration.nix | |
parent | Xlock: Respect dpms off screen (diff) | |
download | nixos-config-004d54e9fe6880edabcf18cb0ae7c9a86bb28e85.tar.gz nixos-config-004d54e9fe6880edabcf18cb0ae7c9a86bb28e85.tar.bz2 nixos-config-004d54e9fe6880edabcf18cb0ae7c9a86bb28e85.zip |
Implement initial wayland support
Diffstat (limited to 'hosts/configuration.nix')
-rw-r--r-- | hosts/configuration.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix index d9215d9..e9721b6 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -66,6 +66,8 @@ TERMINAL = "st"; EDITOR = "nvim"; VISUAL = "nvim"; + + XKB_DEFAULT_LAYOUT = "gb"; }; environment.sessionVariables = rec { @@ -110,6 +112,11 @@ # started in user sessions. # programs.mtr.enable = true; + xdg.portal = { + enable = true; + wlr.enable = true; + }; + # List services that you want to enable: services = { openssh = { @@ -119,6 +126,7 @@ port = 2222; }]; }; + dbus.enable = true; irqbalance.enable = true; fwupd.enable = true; }; |