nix-config/modules/default.nix
2025-11-01 21:44:24 +01:00

21 lines
312 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;};
};
};
}