nix-config/modules/default.nix
2025-09-16 23:52:58 +02:00

23 lines
267 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;};
};
};
}