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