David Arnold

Results 358 issues of David Arnold

There is one single case where a secret is not the right thing to do: - Node Join Tokens Why? They are usually short lived. For example they expire after...

```nix { "192.168.192.168" = { # hardcoded static ip from iso image deployment = { switchIpTo = morph-cli.switchIpTarget; # overlayed into the configuration from command line argument }; }; }...

https://github.com/DBCDK/morph/blob/c048d6339f18613a1544bc62ff852cb4c6de1042/data/eval-machines.nix#L35 https://search.nixos.org/options?show=networking.hostName&query=networking.hostName&from=0&size=30&sort=relevance&channel=unstable#disabled Out of `hostname.example.com` it should be only the dns label `hostname`. It also means the examples are not tested: https://github.com/DBCDK/morph/blob/c048d6339f18613a1544bc62ff852cb4c6de1042/examples/simple.nix#L17

For host enrolment, I need to accomplish three things transparently. Given a bootstrapped host with a custom iso image, I need to: - Address a host temporarily on a fixed...

I'm seeking advice on a long-held consideration to amend the OCI image spec with means to add an infinite number of content==location-addressed blobs to the file system. Let's call these...

I imagine a super leightweight `impermanenced` which helps setting up a sytemd cron job for syncing whole state folders with either 1) rsync or 2) syncthing wired up. This can...

I want to build the following protobuf: ```proto syntax = "proto3"; package vicigo.dialer.commands; option go_package = "commands"; import "google/protobuf/timestamp.proto"; import "github.com/CyCoreSystems/ari/ari.proto"; // here, I'd like to have all request structs...

People have been complaining about the readability of the code. In particular, the former `flattenTreeSystem` which might have ultimately lead to its abandonment instead of its fixing in the particular...

This implementation of hasBUilt depends on a very simple IFD (`builtins.pathExists drv`). It works well for successful builds, but currently build-errors for failing ones, despite of the use of `builtins.tryEval`....

Wouldn't it make the public api of a simple flake repo cleaner if default*, eg defaultPackage would _**not be re-exposed**_ in `packages`? https://github.com/numtide/flake-utils/blob/08c7ad4a0844adc4a7f9f5bb3beae482e789afa4/simpleFlake.nix#L63 So that we would do: ```nix #...