Graham Christensen

Results 168 comments of Graham Christensen

If you're deploying to machine of a different arch of the deploy host, you need to add (example where the target host is aarch64-linux): ``` nixpkgs.system = "aarch64-linux"; ``` in...

I'm not sure, but you probably want to avoid `//` when merging NixOS configuration sets, and instead use the NixOS module system's import feature: ``` pi = { ... }:...

I prefer the style proposed here, and it would be a great time to do it. Another option is to remove the final `,`, but I like the final `,`...

This bug is especially important now, the default installer as of 2.1 will detect systemd and default to the multi-user installer. See the attached PDF for a demonstration of the...

Adding this logic: ``` if /usr/sbin/sestatus && /usr/sbin/sestatus 2>&1 | grep -q enforcing; then echo "punting to no-daemon" curl "${installUrl}" | sh -s -- --no-daemon else curl "${installUrl}" | sh...

I just squashed all the style update commits into one, rebased onto origin/master, and applieud a single reformat commit at the end. Also I changed .git-blame-ignore-revs to be a todo...

Thanks for the report. I'm relocating to NixOS/nix since I'm pretty sure this is bug is a bug in Nix and not Nixpkgs.

Tested the resulting installer, I think this is good to go.

I tested this on an aarch64 mac through MDM and it worked great!

You actually don't need a special provider to configure it: resource "vault_mount" "github" {   path = "github"   type = "github" } resource "vault_generic_endpoint" "github-config" {   path = "${vault_mount.github.path}/config"   data_json =...