summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2017-07-26 15:21:25 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2017-07-26 15:21:25 +0200
commit9e5fac9fffd579570feab160895a436e59d19567 (patch)
tree7b8f668a380214cfa21b4993f3a9aaae74bb74b0
parent6e8491a3198942feb63b7014234b7ec07b73b350 (diff)
downloadnixos-9e5fac9fffd579570feab160895a436e59d19567.tar
nixos-9e5fac9fffd579570feab160895a436e59d19567.tar.gz
nixos-9e5fac9fffd579570feab160895a436e59d19567.tar.bz2
nixos-9e5fac9fffd579570feab160895a436e59d19567.tar.xz
nixos-9e5fac9fffd579570feab160895a436e59d19567.zip
Fix types
-rw-r--r--ymir.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/ymir.nix b/ymir.nix
index c5902f9a..b55df52e 100644
--- a/ymir.nix
+++ b/ymir.nix
@@ -570,7 +570,7 @@ in rec {
570 masterConfig = { 570 masterConfig = {
571 uucp = { 571 uucp = {
572 type = "unix"; 572 type = "unix";
573 private = null; 573 private = true;
574 privileged = true; 574 privileged = true;
575 chroot = false; 575 chroot = false;
576 command = "pipe"; 576 command = "pipe";
@@ -578,7 +578,7 @@ in rec {
578 }; 578 };
579 mlmmj = { 579 mlmmj = {
580 type = "unix"; 580 type = "unix";
581 private = null; 581 private = true;
582 privileged = true; 582 privileged = true;
583 chroot = false; 583 chroot = false;
584 command = "pipe"; 584 command = "pipe";
@@ -586,7 +586,7 @@ in rec {
586 }; 586 };
587 mlmmj-subs = { 587 mlmmj-subs = {
588 type = "unix"; 588 type = "unix";
589 private = null; 589 private = true;
590 privileged = true; 590 privileged = true;
591 chroot = false; 591 chroot = false;
592 command = "pipe"; 592 command = "pipe";
@@ -594,7 +594,7 @@ in rec {
594 }; 594 };
595 policy-spf = { 595 policy-spf = {
596 type = "unix"; 596 type = "unix";
597 private = null; 597 private = true;
598 privileged = true; 598 privileged = true;
599 chroot = false; 599 chroot = false;
600 command = "spawn"; 600 command = "spawn";