diff options
author | 2025-09-05 15:57:25 +0200 | |
---|---|---|
committer | 2025-09-05 15:57:25 +0200 | |
commit | 783d84d1a68bcd3d0716e20ec8f47764a2bad4db (patch) | |
tree | 05d5c8d09a441eae3b4476e53492999bcd7b9081 /default.nix | |
parent | 61d1e03854a78a946ce16d71bd30956c27cc9e0b (diff) |
add two systems
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..744d2f0 --- /dev/null +++ b/default.nix @@ -0,0 +1,12 @@ +{ sources ? import ./npins +, pkgs ? import sources.nixpkgs {} +}: +with (import ./lib {}); +eval { + machines.bob = { self, ... }: { + networking.hostName = "bob"; + }; + machines.alice = { + networking.hostName = "alice"; + }; +} |