Files
hearth/nixos/system/tenix/default.nix
T
yukkop 7f7229b199
runner nix smoke / nix label smoke (push) Has been cancelled
feat: tenix host
2026-06-10 13:15:09 +00:00

21 lines
400 B
Nix

{
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; })
];
}