nixos-config/modules/sway.nix
fleaz 3d77759129
sway: Some eyecandy
- new icontheme
- Sway notification center instead of mako
- gtklock instead of swaylock
- nwg-drawer instead of wofi
2025-02-18 22:16:36 +01:00

23 lines
412 B
Nix

{
# enable sway, so we have a swaylock pam config
programs.sway.enable = true;
programs.sway.package = null;
security.pam.services.gtklock = {};
# autologin
services.greetd = {
enable = true;
settings = {
default_session = {
command = "sway";
user = "fleaz";
};
initial_session = {
command = "sway";
user = "fleaz";
};
};
};
}