summaryrefslogtreecommitdiffstats
path: root/nixos/modules
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
parent18d0ed20e8a7a99fcbf05ce79439c00238ee1d44 (diff)
fix build with allowAliases=false
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/config/pulseaudio.nix4
-rw-r--r--nixos/modules/config/users-groups.nix4
-rw-r--r--nixos/modules/virtualisation/libvirtd.nix2
3 files changed, 5 insertions, 5 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,
diff --git a/nixos/modules/virtualisation/libvirtd.nix b/nixos/modules/virtualisation/libvirtd.nix
index 87409db4320c..3d002bc22329 100644
--- a/nixos/modules/virtualisation/libvirtd.nix
+++ b/nixos/modules/virtualisation/libvirtd.nix
@@ -104,7 +104,7 @@ in {
config = mkIf cfg.enable {
- environment.systemPackages = with pkgs; [ libvirt netcat-openbsd cfg.qemuPackage ];
+ environment.systemPackages = with pkgs; [ libvirt libressl.nc cfg.qemuPackage ];
boot.kernelModules = [ "tun" ];