mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
nix: refactored with mkEnableOption
This commit is contained in:
parent
f0dc70b5d2
commit
32d065ec99
3 changed files with 5 additions and 5 deletions
|
|
@ -11,9 +11,9 @@ in
|
|||
|
||||
{
|
||||
options.extra = {
|
||||
utilities.enable = lib.mkOption { default = false; };
|
||||
workflow.enable = lib.mkOption { default = false; };
|
||||
university.enable = lib.mkOption { default = false; };
|
||||
utilities.enable = lib.mkEnableOption "utility packages";
|
||||
workflow.enable = lib.mkEnableOption "worflow packages";
|
||||
university.enable = lib.mkEnableOption "university related packages";
|
||||
};
|
||||
|
||||
config = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue