This commit is contained in:
2026-06-10 19:34:36 +02:00
parent 5c4164ac11
commit bb427145df
14 changed files with 166 additions and 138 deletions
+16 -18
View File
@@ -1,22 +1,20 @@
{ config, lib, pkgs, ... }:
{ 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
];
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
};
programs.hyprland = {
enable = true;
withUWSM = true;
};
environment.systemPackages = with pkgs; [
dunst
kitty
waybar
wofi
];
}