NixOS-Config/modules/system/services/general/displaymanager/default.nix

31 lines
683 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... }:
{
config = lib.mkIf config.system.desktop.enable {
services.displayManager.ly = {
enable = true;
settings = {
vi_mode = true;
waylandsessions = "/etc/greetd/environments";
};
};
environment.etc = {
"greetd/environments/sway.desktop".text = ''
[Desktop Entry]
Name=Sway
Exec=sway --unsupported-gpu
'';
"greetd/environments/niri.desktop".text = ''
[Desktop Entry]
Name=Niri
Exec=niri-session
'';
"greetd/environments/hyprland.desktop".text = ''
[Desktop Entry]
Name=Hyprland
Exec=Hyprland
'';
};
};
}