Skip to content

Instantly share code, notes, and snippets.

@benjumanji
Last active September 14, 2025 11:21
Show Gist options
  • Save benjumanji/07c8fccdd842ddd759624fe5e7bb6790 to your computer and use it in GitHub Desktop.
Save benjumanji/07c8fccdd842ddd759624fe5e7bb6790 to your computer and use it in GitHub Desktop.
abstract over hostnames / systems
{ hostname }:
let
sources = import ./npins;
nixos = import (sources.nixpkgs + "/nixos");
in
nixos {
configuration = {
imports = [
./the-rest-of-the-owl.nix
];
networking.hostName = hostname;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment