nixcfg/nixosModules/desktop/budgie/default.nix

24 lines
383 B
Nix
Raw Normal View History

2024-05-09 23:23:56 -04:00
{
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;
};
};
};
};
}