This commit is contained in:
Elec3137 2026-02-04 12:17:42 -08:00
commit b4c9b055fb
20 changed files with 1540 additions and 0 deletions

25
default.nix Normal file
View 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;
};
}