nixos-config/nixos/greetd-sway.nix

15 lines
188 B
Nix

{
pkgs,
config,
lib,
...
}: {
services.greetd = {
enable = true;
settings = {
default_session = {
command = "${pkgs.sway}/bin/sway";
};
};
};
}