mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-05 12:28:52 -05:00
split out services so they dont auto build on user include
This commit is contained in:
parent
aa052b998e
commit
2b95d8aebd
7 changed files with 36 additions and 18 deletions
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue