summaryrefslogtreecommitdiffstats
path: root/nixos/modules/profiles
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2018-04-09 15:39:58 +0200
committerProfpatsch <mail@profpatsch.de>2019-01-13 13:47:36 +0100
commitc8c53fcb1154999dabac350bebe12611a0f75024 (patch)
tree85bb4457aa6a9edb20634e0b5bace4d2bbb83240 /nixos/modules/profiles
parent77ccb1315b95fbce2d5704f74771b835b9b9779e (diff)
modules/profiles/minimal: sound is disabled by default
The option is `false` by default since e349ccc77febd45abbd14be14f7de123ec4a4da2, so we don’t need to mention it explicitely in these minimal configs.
Diffstat (limited to 'nixos/modules/profiles')
-rw-r--r--nixos/modules/profiles/headless.nix1
-rw-r--r--nixos/modules/profiles/minimal.nix2
2 files changed, 1 insertions, 2 deletions
diff --git a/nixos/modules/profiles/headless.nix b/nixos/modules/profiles/headless.nix
index 131ee272859a..46a9b6a7d8d5 100644
--- a/nixos/modules/profiles/headless.nix
+++ b/nixos/modules/profiles/headless.nix
@@ -6,7 +6,6 @@
with lib;
{
- sound.enable = false;
boot.vesa = false;
# Don't start a tty on the serial consoles.
diff --git a/nixos/modules/profiles/minimal.nix b/nixos/modules/profiles/minimal.nix
index 138eda117c74..809bedc588f2 100644
--- a/nixos/modules/profiles/minimal.nix
+++ b/nixos/modules/profiles/minimal.nix
@@ -13,5 +13,5 @@ with lib;
documentation.enable = mkDefault false;
- sound.enable = mkDefault false;
+ services.nixosManual.enable = mkDefault false;
}