2024-12-12 06:37:05 -05:00
|
|
|
{ config, pkgs, lib, ... }:
|
2024-12-06 04:03:03 -05:00
|
|
|
{
|
2024-12-12 06:37:05 -05:00
|
|
|
config = lib.mkIf config.system.desktop.enable {
|
2024-12-18 23:52:44 -05:00
|
|
|
services.displayManager.ly = {
|
2024-12-12 06:37:05 -05:00
|
|
|
enable = true;
|
|
|
|
settings = {
|
2024-12-18 23:52:44 -05:00
|
|
|
vi_mode = true;
|
|
|
|
waylandsessions = "/etc/greetd/environments";
|
2024-12-06 04:03:03 -05:00
|
|
|
};
|
|
|
|
};
|
2024-12-06 17:49:20 -05:00
|
|
|
|
2024-12-12 06:37:05 -05:00
|
|
|
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
|
|
|
|
'';
|
|
|
|
};
|
2024-12-06 17:49:20 -05:00
|
|
|
};
|
2024-12-06 04:03:03 -05:00
|
|
|
}
|