| 25 Oct 2023 |
Artturin | Redacted or Malformed Event | 03:33:32 |
Artturin | https://github.com/nixos/nix/commit/dd93c12c6a3ebf5b52fe7045d708ed10f6acd0dd this could be the cause | 04:00:30 |
Artturin | Nah it shouldn't | 04:02:29 |
Artturin | The commit that one is reverting is https://github.com/nixos/nix/commit/1cba5984a68a489c4a56691032e4c87991c678f4 | 04:04:17 |
Artturin | github shows it was in 2.14.0 | 04:04:38 |
Artturin | while 23.05 is on 2.13.6 | 04:05:06 |
Artturin | changing the nix version in flake
2_14,2_15 works
2_16 fails | 04:10:03 |
Artturin | * changing the nix version in flake
2_15 works
2_16 fails | 04:11:15 |
Artturin | good 2.15.2(.3 too probably), bad 2.16.1(and .0)+ | 04:16:59 |
Artturin | * good 2.15.2(.3 too probably), bad 2.16.1(and .0)+ | 04:17:07 |
Artturin | Can't the non-failure with
derivation {
name = "sandbox-violation";
system = builtins.currentSystem;
src = ./../../../lib;
builder = builtins.storePath <bash>;
args = [ "-c" "echo hi; echo ${toString builtins.currentTime} > $out" ];
}
in depth0/depth1/depth3/default.nix in nixpkgs
$ nix shell "nixpkgs#nixVersions.nix_2_16" --command nix-build depth0/depth1/depth3/default.nix -I "bash=$(command -v bash)" --option restrict-eval true
error: access to absolute path '/home/artturin/nixgits/my-nixpkgs/depth0/depth1/depth3/default.nix' is forbidden in restricted mode
| 04:38:26 |
Artturin | * Can't repro the non-failure with
derivation {
name = "sandbox-violation";
system = builtins.currentSystem;
src = ./../../../lib;
builder = builtins.storePath <bash>;
args = [ "-c" "echo hi; echo ${toString builtins.currentTime} > $out" ];
}
in depth0/depth1/depth3/default.nix in nixpkgs
$ nix shell "nixpkgs#nixVersions.nix_2_16" --command nix-build depth0/depth1/depth3/default.nix -I "bash=$(command -v bash)" --option restrict-eval true
error: access to absolute path '/home/artturin/nixgits/my-nixpkgs/depth0/depth1/depth3/default.nix' is forbidden in restricted mode
| 04:38:36 |
| 26 Oct 2023 |
pbsds | error: writing to file: No space left on device on aarch64-darwin: https://logs.ofborg.org/?key=nixos/nixpkgs.257760&attempt_id=2f9c3138-239d-428b-980a-22b9604619b1 | 11:21:20 |
hexa | In reply to @hexa:lossy.network https://github.com/NixOS/nixpkgs/pull/263041/checks?check_run_id=17994139695 recurrening event | 11:48:57 |
cole-h | Sigh… I don’t suppose anybody knows how to write a timer like systemd has for launchd? 😅 | 13:09:29 |
Lily Foster | In reply to @cole-h:matrix.org Sigh… I don’t suppose anybody knows how to write a timer like systemd has for launchd? 😅 i actually do since i have before. if you want me to whip up something. i'm assuming you're just wanting periodic garbage collection? | 13:13:46 |
Lily Foster | actually are these using nix-darwin right now? I forget. I've admittedly never used it but i imagine it has a way to specify timers? | 13:14:14 |
@adam:robins.wtf | here's a nix-darwin timer: https://codeberg.org/adamcstephens/dotfiles/src/commit/fd44a309d17aab3a363f5ee978922a6365e19830/parts/darwin.nix#L93 | 13:16:06 |
@adam:robins.wtf | home-manager has similar launchd options, so you could use HM instead | 13:18:04 |
@adam:robins.wtf | * home-manager has similar launchd options, so you could use HM instead for user timers | 13:18:16 |
Lily Foster | In reply to @adam:robins.wtf home-manager has similar launchd options, so you could use HM instead i imagine those are tied to user sessions? | 13:19:49 |
@adam:robins.wtf | yes, sorry didn't realize this was the ofborg room :) | 13:20:03 |
@adam:robins.wtf | for GC, nix-darwin has nix.gc options | 13:20:13 |
Lily Foster | In reply to @adam:robins.wtf for GC, nix-darwin has nix.gc options i figured it might | 13:20:22 |
@adam:robins.wtf | https://daiderd.com/nix-darwin/manual/index.html#opt-nix.gc.automatic | 13:20:35 |