28 lines
364 B
Nix
28 lines
364 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
outputs,
|
|
...
|
|
}: let
|
|
inherit (lib) mkOption types;
|
|
in {
|
|
imports = [
|
|
./apps
|
|
./base
|
|
./boot
|
|
./catppuccin
|
|
./hardware
|
|
./network
|
|
./timers
|
|
./users
|
|
./wm
|
|
];
|
|
|
|
options = {
|
|
horseman = {
|
|
username = mkOption {type = types.str;};
|
|
stateVersion = mkOption {type = types.str;};
|
|
};
|
|
};
|
|
}
|