mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 02:19:41 +00:00
34 lines
778 B
Nix
34 lines
778 B
Nix
{lib, ...}: let
|
|
inherit (lib) mkOption mkEnableOption types;
|
|
in {
|
|
imports = [
|
|
./boot
|
|
./impermanence.nix
|
|
];
|
|
|
|
options.myOptions.system = {
|
|
hostname = mkOption {
|
|
type = types.str;
|
|
description = "Hostname for this system";
|
|
};
|
|
|
|
username = mkOption {
|
|
type = types.str;
|
|
description = "Username for the primary admin account for this system";
|
|
};
|
|
|
|
sound = {
|
|
enable = mkEnableOption "sound related programs and audio-dependent programs";
|
|
};
|
|
|
|
docker = {
|
|
enable = mkEnableOption "docker virtualisation platform";
|
|
data-root = mkOption {
|
|
type = types.str;
|
|
description = "Path to the directory where docker data should be stored";
|
|
default = "/var/lib/docker";
|
|
};
|
|
};
|
|
};
|
|
}
|