dsiable hyprland

This commit is contained in:
Kopatz
2024-05-09 10:07:29 +02:00
parent b44c1416c8
commit 551ee3848c
4 changed files with 26 additions and 8 deletions

View File

@@ -13,6 +13,23 @@
mainUser.layout = "de";
mainUser.variant = "us";
age.identityPaths = [ /home/kopatz/.ssh/id_rsa ];
services.xserver.displayManager.session = [
{
manage = "desktop";
name = "hyprland";
start = ''
${lib.getExe pkgs.hyprland} &
waitPID=$!
'';
}
{
manage = "desktop";
name = "plasma5";
start = ''
env ${pkgs.plasma-workspace}/bin/startplasma-x11
'';
}
];
# Bootloader.
boot.loader.systemd-boot.enable = true;