2024-12-22 23:46:42 -05:00
|
|
|
{lib, ...}: {
|
2024-10-18 23:42:11 -04:00
|
|
|
imports = [
|
|
|
|
|
./audio.nix
|
|
|
|
|
./bash.nix
|
|
|
|
|
./boot.nix
|
|
|
|
|
./configuration.nix
|
|
|
|
|
./display.nix
|
|
|
|
|
./locale.nix
|
|
|
|
|
./plasma.nix
|
|
|
|
|
./security.nix
|
|
|
|
|
./virt.nix
|
|
|
|
|
];
|
2024-12-22 23:46:42 -05:00
|
|
|
options.u = {
|
|
|
|
|
has = {
|
|
|
|
|
graphical = lib.mkOption {
|
|
|
|
|
type = lib.types.bool;
|
|
|
|
|
description = "enable graphical settings";
|
|
|
|
|
default = true;
|
|
|
|
|
};
|
|
|
|
|
wine = lib.mkOption {
|
|
|
|
|
type = lib.types.bool;
|
|
|
|
|
description = "enable wine settings";
|
|
|
|
|
default = true;
|
|
|
|
|
};
|
|
|
|
|
virt = lib.mkOption {
|
|
|
|
|
type = lib.types.bool;
|
|
|
|
|
description = "enable virt settings";
|
|
|
|
|
default = true;
|
|
|
|
|
};
|
|
|
|
|
container = lib.mkOption {
|
|
|
|
|
type = lib.types.bool;
|
|
|
|
|
description = "enable container settings";
|
|
|
|
|
default = true;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
2024-10-18 23:42:11 -04:00
|
|
|
}
|