nixos-config/modules/sway.nix

21 lines
341 B
Nix
Raw Normal View History

2023-10-13 16:45:12 +00:00
{
# enable sway, so we have a swaylock pam config
programs.sway.enable = true;
# autologin
services.greetd = {
enable = true;
settings = {
default_session = {
command = "sway";
user = "fleaz";
};
initial_session = {
command = "sway";
user = "fleaz";
};
};
};
}