pushing for review

This commit is contained in:
specCon18 2024-04-11 01:21:49 -04:00
parent 786ca732aa
commit dd67b2592c
72 changed files with 1142 additions and 1447 deletions

View file

@ -0,0 +1,12 @@
{ config, pkgs, lib, ...}:
{
options.speccon18.desktop.budgie.enable = lib.mkEnableOption "enables specs custom budgie setup";
config = lib.mkIf config.speccon18.desktop.budgie.enable {
services.xserver = {
enable = true;
desktopManager.budgie.enable = true;
displayManager.lightdm.enable = true;
};
};
}