feat: tenix host
runner nix smoke / nix label smoke (push) Has been cancelled

This commit is contained in:
2026-06-10 13:15:09 +00:00
parent 2d5bd26c36
commit 7f7229b199
3 changed files with 58 additions and 2 deletions
+20
View File
@@ -0,0 +1,20 @@
{
flake,
self,
inputs,
system ? "x86_64-linux",
...
}: let
# Use folder name as name of this system
name = builtins.baseNameOf ./.;
in self.lib.nixpkgs-lib.nixosSystem {
pkgs = import inputs.nixpkgs {
inherit system;
overlays = [ self.overlays.default ];
};
modules = [
{ networking.hostName = name; }
(import ./${name}.nix { inherit flake self inputs; })
];
}