diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2023-08-26 21:11:20 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2023-08-26 21:15:19 +0200 |
commit | 1fbdb6625c88f99688f4cd6e35ade7a93837ec7b (patch) | |
tree | 3103ed0b9ab22939bf962fe37f497317dd145609 /hosts | |
parent | Update (diff) | |
download | nixos-config-1fbdb6625c88f99688f4cd6e35ade7a93837ec7b.tar.gz nixos-config-1fbdb6625c88f99688f4cd6e35ade7a93837ec7b.tar.bz2 nixos-config-1fbdb6625c88f99688f4cd6e35ade7a93837ec7b.zip |
Hosts: Start switch from river to sway wm
Sadly, river doesn't get many updates and wayland kind of requires constant updates to the client.
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/configuration.nix | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/hosts/configuration.nix b/hosts/configuration.nix index 0c02bef..b0c552c 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -135,11 +135,14 @@ extraPortals = [ pkgs.xdg-desktop-portal-gtk ]; }; - #fix swaylock - security.pam.services.swaylock = { - text = '' - auth include login - ''; + security = { + polkit.enable = true; + #fix swaylock + pam.services.swaylock = { + text = '' + auth include login + ''; + }; }; services = { |