nix-config/modules/default.nix
2025-12-23 19:46:22 +01:00

29 lines
381 B
Nix

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