This commit is contained in:
2026-06-10 19:08:24 +02:00
parent 517c3d90c6
commit 5c4164ac11
7 changed files with 121 additions and 12 deletions
+22
View File
@@ -0,0 +1,22 @@
{ config, lib, pkgs, ... }:
{
config = lib.mkIf (config.profiles.desktop == "hyprland") {
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
};
programs.hyprland = {
enable = true;
withUWSM = true;
};
environment.systemPackages = with pkgs; [
dunst
kitty
waybar
wofi
];
};
}