nixos-config/modules/sway.nix

24 lines
412 B
Nix
Raw Normal View History

2023-10-13 18:45:12 +02:00
{
# enable sway, so we have a swaylock pam config
programs.sway.enable = true;
2024-05-07 19:09:51 +02:00
programs.sway.package = null;
2023-10-13 18:45:12 +02:00
security.pam.services.gtklock = {};
2023-10-13 18:45:12 +02:00
# autologin
services.greetd = {
enable = true;
settings = {
default_session = {
command = "sway";
user = "fleaz";
};
initial_session = {
command = "sway";
user = "fleaz";
};
};
};
}