nix-config/modules/default.nix

29 lines
436 B
Nix

# Common modules
{ lib, ... }:
{
imports = [
./hardware
./home
./programs
./secrets
./services
./system
];
options.my = with lib; {
user = {
name = mkOption {
type = types.str;
default = "ambroisie";
example = "alice";
description = "my username";
};
home = {
enable = my.mkDisableOption "home-manager configuration";
};
};
};
}