1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 19:17:45 +00:00

Fix building and don't eval cache

This commit is contained in:
RGBCube 2024-05-24 12:36:01 +03:00
parent 427ef39f35
commit 62ec73e3f0
No known key found for this signature in database
2 changed files with 4 additions and 2 deletions

View file

@ -15,8 +15,9 @@
controlPath = "~/.ssh/control";
in homeConfiguration {
home.activation.createControlPath = {
after = [ "writeBoundary" ];
data = "mkdir --parents ${controlPath}";
after = [ "writeBoundary" ];
before = [];
data = "mkdir --parents ${controlPath}";
};
programs.ssh = enabled {

View file

@ -18,6 +18,7 @@ def main --wrapped [
let nix_flags = [
"--option" "accept-flake-config" "true"
"--option" "eval-cache" "false"
] | append ($args_split | get --ignore-errors 1 | default [])
if $host == (hostname) {