summary refs log tree commit diff
path: root/nixos/modules/config
diff options
context:
space:
mode:
authorvolth <volth@volth.com>2018-07-22 23:52:54 +0000
committervolth <volth@volth.com>2018-07-23 00:12:23 +0000
commit92b3e8f147462e5716d67f24578c2d92ff1deee7 (patch)
treec06d634cc49c6e9aa8d99225d6c06f9bb8c73d88 /nixos/modules/config
parent18d0ed20e8a7a99fcbf05ce79439c00238ee1d44 (diff)
downloadnixlib-92b3e8f147462e5716d67f24578c2d92ff1deee7.tar
nixlib-92b3e8f147462e5716d67f24578c2d92ff1deee7.tar.gz
nixlib-92b3e8f147462e5716d67f24578c2d92ff1deee7.tar.bz2
nixlib-92b3e8f147462e5716d67f24578c2d92ff1deee7.tar.lz
nixlib-92b3e8f147462e5716d67f24578c2d92ff1deee7.tar.xz
nixlib-92b3e8f147462e5716d67f24578c2d92ff1deee7.tar.zst
nixlib-92b3e8f147462e5716d67f24578c2d92ff1deee7.zip
fix build with allowAliases=false
Diffstat (limited to 'nixos/modules/config')
-rw-r--r--nixos/modules/config/pulseaudio.nix4
-rw-r--r--nixos/modules/config/users-groups.nix4
2 files changed, 4 insertions, 4 deletions
diff --git a/nixos/modules/config/pulseaudio.nix b/nixos/modules/config/pulseaudio.nix
index 3fd882789af2..e16a021ec20b 100644
--- a/nixos/modules/config/pulseaudio.nix
+++ b/nixos/modules/config/pulseaudio.nix
@@ -144,8 +144,8 @@ in {
 
       package = mkOption {
         type = types.package;
-        default = pulseaudioLight;
-        defaultText = "pkgs.pulseaudioLight";
+        default = pkgs.pulseaudio;
+        defaultText = "pkgs.pulseaudio";
         example = literalExample "pkgs.pulseaudioFull";
         description = ''
           The PulseAudio derivation to use.  This can be used to enable
diff --git a/nixos/modules/config/users-groups.nix b/nixos/modules/config/users-groups.nix
index 0290eff22fbd..ddec21b5f6e5 100644
--- a/nixos/modules/config/users-groups.nix
+++ b/nixos/modules/config/users-groups.nix
@@ -120,8 +120,8 @@ let
 
       shell = mkOption {
         type = types.either types.shellPackage types.path;
-        default = pkgs.nologin;
-        defaultText = "pkgs.nologin";
+        default = pkgs.shadow;
+        defaultText = "pkgs.shadow";
         example = literalExample "pkgs.bashInteractive";
         description = ''
           The path to the user's shell. Can use shell derivations,