nixdots/options/system/default.nix
2024-05-15 21:24:55 +02:00

30 lines
614 B
Nix

{ lib, ... }: with lib; let
inherit (lib) mkOption;
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";
};
bluetooth = {
enable = mkEnableOption "bluetooth modules, drivers and configuration program(s)";
};
};
}