c4710n

Results 12 comments of c4710n

Share a setup which works in my daily usage. --- I'm using `morph` on macOS for building software on my `x86_64-linux` machines. The core idea is simple: 1. run a...

Most of developers introduce external libs for reducing mental burden. Because of that, I think it would be enough to tell them "how to do that", rather than "why to...

Found another way to implement this without changing this repo. ;)

What I really need here is transforming `"/nix/store/*"` (string) to `/nix/store/` (path). [This comment](https://github.com/NixOS/nix/issues/1074#issuecomment-288347845) provides a way to do that: ``` toAbsPath = s: /. + s ``` But, this...

> Just chiming in to say that I don't think deploy-rs needs to solve this issue; `sops-nix` allows to solve it at the level of NixOS. That's true.

The latest version - 2.4.0 I found `DNS.Server` is still calling `Socket`: + https://github.com/plastic-forks/elixir-dns/blob/a32f6998dbecedaf177edc2c9436dc057eea500b/lib/dns/server.ex#L24 + https://github.com/plastic-forks/elixir-dns/blob/a32f6998dbecedaf177edc2c9436dc057eea500b/lib/dns/server.ex#L34

As you assumed, I am using nix-daemon. After running `sudo nix-collect-garbage -d`, the old generations is cleaned up.

@happysalada I have permission for that, so I added it. https://github.com/LnL7/nix-darwin/wiki/Deleting-old-generations Feel free to edit if you want. For the pureness of wiki, I will not mention you at wiki....

This would be more solid by comparing `docker config --hash` output and `com.docker.compose.config-hash` container label. Two related links: + https://github.com/docker/compose-cli/issues/935#issuecomment-803314117 + https://github.com/docker/compose/issues/9211