1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 19:47:47 +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 {