diff options
author | notgne2 | 2021-02-08 15:28:31 -0700 |
---|---|---|
committer | notgne2 | 2021-02-08 15:28:31 -0700 |
commit | 64f84aaf87b8771cd8050d932c96400df9ccd75b (patch) | |
tree | 044b1bad348b560c0e80dd11faa8af41e3beb03f /flake.nix | |
parent | 4f4c1e3cf7c9bc13a1dfd7d0035696cf6e7eaeb6 (diff) |
Work around NixOS/nixpkgs#73404 by `cd`-ing into `/tmp` during NixOS activation
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -87,6 +87,9 @@ }; nixos = base: custom base.config.system.build.toplevel '' + # work around https://github.com/NixOS/nixpkgs/issues/73404 + cd /tmp + $PROFILE/bin/switch-to-configuration switch # https://github.com/serokell/deploy-rs/issues/31 |