Files
homelab/modules/core/options.nix
T

47 lines
955 B
Nix

{
lib,
shared,
...
}:
{
options.homelab.core = {
kernel = lib.mkOption {
type = with lib.types; enum (builtins.attrNames shared.kernelOptions);
default = "lts";
description = "The kernel of the machine";
};
user = {
name = lib.mkOption {
type = lib.types.str;
default = "river";
description = "The username of the primary user";
};
fullName = lib.mkOption {
type = lib.types.str;
default = "Maaz Khokhar";
description = "The full name of the user";
};
shell = lib.mkOption {
type = with lib.types; listOf str;
default = "fish";
description = "The shell the primary user uses";
};
};
allowUnfree = lib.mkEnableOption {
enable = true;
default = true;
};
ssh = {
permitRootLogin = lib.mkEnableOption {
enable = true;
default = false;
};
};
};
}