treewide: remove hyprland

This commit is contained in:
2026-01-11 21:49:17 +00:00
parent 47676ade11
commit 7845ecd2dd
15 changed files with 2 additions and 620 deletions

View File

@@ -6,7 +6,6 @@
./services/postgresql.nix
./services/tailscale.nix
./system/desktop/gnome.nix
./system/desktop/hyprland.nix
./system/wireless.nix
];
}

View File

@@ -1,25 +0,0 @@
{
config,
lib,
...
}:
let
inherit (lib)
mkEnableOption
mkIf
;
cfg = config.modules.system.desktop.hyprland;
in
{
options.modules.system.desktop.hyprland.enable = mkEnableOption "hyprland";
config = mkIf cfg.enable {
networking.networkmanager.enable = true;
programs.hyprland = {
enable = true;
withUWSM = true;
};
};
}