initial
This commit is contained in:
commit
b4c9b055fb
20 changed files with 1540 additions and 0 deletions
25
default.nix
Normal file
25
default.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
|
||||
let
|
||||
cfg = config.nixowos;
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
./cli
|
||||
./graphical
|
||||
./system
|
||||
];
|
||||
|
||||
options.nixowos = {
|
||||
enable = lib.mkEnableOption "common settings";
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
nixowos.cli.enable = true;
|
||||
nixowos.system.enable = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue