summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2019-02-20 12:42:20 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2019-02-20 12:42:20 +0100
commit481ed7d6aa6c67a70410928e47233d0d386d096b (patch)
tree9ed4c8030fda1264a7ada6fdcd316b2bd4f9409c
parent0fa3d77bd7a21eb2ac4a5316b4f56018d2d1ae6b (diff)
downloadnixos-481ed7d6aa6c67a70410928e47233d0d386d096b.tar
nixos-481ed7d6aa6c67a70410928e47233d0d386d096b.tar.gz
nixos-481ed7d6aa6c67a70410928e47233d0d386d096b.tar.bz2
nixos-481ed7d6aa6c67a70410928e47233d0d386d096b.tar.xz
nixos-481ed7d6aa6c67a70410928e47233d0d386d096b.zip
...
-rw-r--r--hel.nix10
1 files changed, 4 insertions, 6 deletions
diff --git a/hel.nix b/hel.nix
index f91c8904..cd337a3a 100644
--- a/hel.nix
+++ b/hel.nix
@@ -509,6 +509,10 @@
509 [ "ro" "guest" 509 [ "ro" "guest"
510 ]; 510 ];
511 } 511 }
512 { where = "/tmp";
513 options = lib.concatStringsSeq ","
514 ["mode=1777" "strictatime" "nosuid" "nodev" "size=16G"];
515 }
512 ]; 516 ];
513 517
514 systemd.user.services."pulseaudio".enable = lib.mkForce false; 518 systemd.user.services."pulseaudio".enable = lib.mkForce false;
@@ -623,12 +627,6 @@
623 ''; 627 '';
624 }; 628 };
625 629
626 systemd.mounts = [
627 { where = "/tmp";
628 mountOptions.Options = ["mode=1777" "strictatime" "nosuid" "nodev" "size=16G"];
629 }
630 ];
631
632 system = { 630 system = {
633 stateVersion = "16.09"; 631 stateVersion = "16.09";
634 }; 632 };