fix (host options): change all enabled to false, fix bugs
This commit is contained in:
parent
327f607a0f
commit
e8ecb6e16e
6 changed files with 5 additions and 6 deletions
|
|
@ -1 +0,0 @@
|
|||
Опции для конфигурации хоста (системы).
|
||||
|
|
@ -12,7 +12,7 @@ in
|
|||
host.locale = {
|
||||
enable = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = true;
|
||||
default = false;
|
||||
description = "Basic locale settings.";
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ in
|
|||
host.nix = {
|
||||
enable = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = true;
|
||||
default = false;
|
||||
description = "Nix settings for host.";
|
||||
};
|
||||
optimization.enable = lib.mkOption {
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ in
|
|||
host.polkit = {
|
||||
enable = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = true;
|
||||
default = false;
|
||||
description = "Polkit configurations for host.";
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ in
|
|||
|
||||
powerProfiles.enable = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = !config.device.battery.enable;
|
||||
default = !config.device.laptop.battery.enable;
|
||||
description = "Power Profiles Daemon configurations for host.";
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ in
|
|||
host.xserver = {
|
||||
enable = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = true;
|
||||
default = false;
|
||||
description = "Xserver configurations for host.";
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Reference in a new issue