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
+28
View File
@@ -0,0 +1,28 @@
{ lib, pkgs, ... }:
{
imports = [
./budgie.nix
./gnome.nix
./hyprland.nix
./kde.nix
];
options.profiles.desktop = lib.mkOption {
type = lib.types.enum [
"kde"
"gnome"
"budgie"
"hyprland"
];
default = "kde";
example = "hyprland";
description = "Waehlt die Desktop-Umgebung fuer dieses System aus.";
};
config.environment.systemPackages = with pkgs; [
seahorse
wayland-utils
wl-clipboard
];
}