Alexander Bantyev
Alexander Bantyev
@konkor I understand that we have to use sync calls when we need the output. Amazingly though, when we need to be root, we don't need output and can use...
@konkor Yes, it's asking for password every time you change some setting and also for some reason it asks for password a bunch of times on startup. I'm currently thinking...
@konkor Ok, thank you for spending the time on this. 1. That would enrage most NixOS users (to be fair, me included :laughing:) because Nix tries to keep system as...
I'm against having it as _state_. One of the nicest properties of `deploy-rs` compared to `nixops` is that it's "stateless" (as in, all the state is stored on the targets)....
- `magic-rollback` and better `auto-rollback` - Proper schema checks - Much better error handling
Is there any particular reason you want to use `ocaml-system` (from nixpkgs) rather than `ocaml-base-compiler` (from `opam-repository`)?
With this patch, the example builds: ``` diff --git a/modules/kernels/ocaml/default.nix b/modules/kernels/ocaml/default.nix index 6b4f995..049a4ee 100644 --- a/modules/kernels/ocaml/default.nix +++ b/modules/kernels/ocaml/default.nix @@ -10,7 +10,7 @@ # https://github.com/tweag/opam-nix opam-nix ? self.inputs.opam-nix, # Set of...
FTR, the issue is due to an old version of `opam-repository` pinned in `opam-nix`. I'll update it now, and after that update just `ocaml-system = "4.14.1"` should work.
Ah, after looking at the definition more closely, it seems that there is a fallback in case pkg-config is not present. I'm now wondering if there's a way to express...
> I guess one of the issues I have is that I don't know how regenerate the opam file without calling dune build I think `dune build hello.opam` should work...