diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-04-16 23:44:15 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-04-16 23:44:15 -0700 |
commit | 757c411eae1d75d2e9e4e003de1635716f65437d (patch) | |
tree | 475112f90ae96dd767ed30e5cc4e8fab32006248 | |
parent | b92a73e96917c84ef300012ccd663ba2cac6dac7 (diff) | |
download | nix-757c411eae1d75d2e9e4e003de1635716f65437d.tar nix-757c411eae1d75d2e9e4e003de1635716f65437d.tar.gz nix-757c411eae1d75d2e9e4e003de1635716f65437d.tar.bz2 nix-757c411eae1d75d2e9e4e003de1635716f65437d.tar.lz nix-757c411eae1d75d2e9e4e003de1635716f65437d.tar.xz nix-757c411eae1d75d2e9e4e003de1635716f65437d.tar.zst nix-757c411eae1d75d2e9e4e003de1635716f65437d.zip |
Workaround annoying TMPDIR handling
-rw-r--r-- | hosts/common/core/nix.nix | 9 | ||||
-rwxr-xr-x | scripts/pretty-rebuild | 3 |
2 files changed, 11 insertions, 1 deletions
diff --git a/hosts/common/core/nix.nix b/hosts/common/core/nix.nix index 587bac6..dfcbd5c 100644 --- a/hosts/common/core/nix.nix +++ b/hosts/common/core/nix.nix @@ -1,5 +1,14 @@ { inputs, lib, ... }: { + + # work around very annoying TMPDIR handling + # see: https://github.com/NixOS/nix/issues/7154 + boot.tmp.useTmpfs = true; + systemd.services."nix-daemon".environment.TMPDIR = "/nix/tmp"; + systemd.tmpfiles.rules = [ + "d /nix/tmp 770 root nixbld" + ]; + nix = { settings = { trusted-users = [ "root" "@wheel" ]; diff --git a/scripts/pretty-rebuild b/scripts/pretty-rebuild index 30025bb..9822acb 100755 --- a/scripts/pretty-rebuild +++ b/scripts/pretty-rebuild @@ -1,10 +1,11 @@ #!/usr/bin/env nix-shell #!nix-shell -i zsh --packages zsh +# sudo is used for nixos-rebuild below due to: https://github.com/NixOS/nix/issues/7154 cd /etc/nixos && \ nix flake update && \ cd && \ - nixos-rebuild switch --upgrade --show-trace && \ + sudo env TMPDIR=/nix/tmp nixos-rebuild switch --upgrade --show-trace && \ echo && \ nixos-rebuild list-generations | cat && \ echo && \ |