split out services so they dont auto build on user include

This commit is contained in:
TheWanderingCrow 2024-12-25 20:35:21 -05:00
parent aa052b998e
commit 2b95d8aebd
7 changed files with 36 additions and 18 deletions

View file

@ -41,6 +41,10 @@
sway.enable = lib.mkEnableOption "enables sway";
i3.enable = lib.mkEnableOption "enables i3";
};
service = {
note-sync.enable = lib.mkEnableOption "enable note sync to repo";
};
};
# Set default option states in config
@ -82,5 +86,9 @@
sway.enable = lib.mkDefault false;
i3.enable = lib.mkDefault false;
};
service = {
note-sync.enable = lib.mkDefault false;
};
};
}