13 lines
253 B
Nix
13 lines
253 B
Nix
{
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-21.05-small";
|
|
|
|
outputs = { self, nixpkgs }: {
|
|
|
|
nixosConfigurations."thrall" = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules =
|
|
[ ./hosts/thrall ];
|
|
};
|
|
|
|
};
|
|
}
|