core modules have options now
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
{
|
||||
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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user