desktop: added budgie

This commit is contained in:
Aly Raffauf 2024-05-09 23:23:56 -04:00 committed by Aly Raffauf
parent 2b37856369
commit af3f0f75c3
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{
pkgs,
lib,
config,
...
}: {
options = {
alyraffauf.desktop.budgie.enable =
lib.mkEnableOption "Budgie desktop session.";
};
config = lib.mkIf config.alyraffauf.desktop.budgie.enable {
# Enable Budgie.
services = {
xserver = {
enable = true;
desktopManager.budgie = {
enable = true;
};
};
};
};
}

View file

@ -5,6 +5,7 @@
... ...
}: { }: {
imports = [ imports = [
./budgie
./gnome ./gnome
./greetd ./greetd
./hyprland ./hyprland