summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2018-08-17 06:56:51 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2018-08-17 06:56:51 +0300
commit571fb74f449aa173e231166515b41feb778524b8 (patch)
tree67c99d33fa76d1a865c5592704c6c6a02a193a05 /nixos
parent5d18f66ddd4ab12ba8e7e71cf9b57e0bd0978d4d (diff)
downloadnixlib-571fb74f449aa173e231166515b41feb778524b8.tar
nixlib-571fb74f449aa173e231166515b41feb778524b8.tar.gz
nixlib-571fb74f449aa173e231166515b41feb778524b8.tar.bz2
nixlib-571fb74f449aa173e231166515b41feb778524b8.tar.lz
nixlib-571fb74f449aa173e231166515b41feb778524b8.tar.xz
nixlib-571fb74f449aa173e231166515b41feb778524b8.tar.zst
nixlib-571fb74f449aa173e231166515b41feb778524b8.zip
installer: Disable udisks
Due to whoever-knows-what, udisks nowadays pulls in GTK+ et al. But it
shouldn't be needed anyway in the installer, so disable it.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/profiles/installation-device.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/profiles/installation-device.nix b/nixos/modules/profiles/installation-device.nix
index 57d947b52684..8e0e1ffb0c63 100644
--- a/nixos/modules/profiles/installation-device.nix
+++ b/nixos/modules/profiles/installation-device.nix
@@ -32,6 +32,7 @@ with lib;
 
     # Disable some other stuff we don't need.
     security.sudo.enable = false;
+    services.udisks2.enable = false;
 
     # Automatically log in at the virtual consoles.
     services.mingetty.autologinUser = "root";