HOSTS-readme-12.nix
· 295 B · Nix
Sin formato
{
inputs.hosts.url = "github:StevenBlack/hosts";
outputs = { self, nixpkgs, hosts }: {
nixosConfigurations.my-hostname = {
system = "<architecture>";
modules = [
hosts.nixosModule {
networking.stevenBlackHosts.enable = true;
}
];
};
};
}
1 | { |
2 | inputs.hosts.url = "github:StevenBlack/hosts"; |
3 | outputs = { self, nixpkgs, hosts }: { |
4 | nixosConfigurations.my-hostname = { |
5 | system = "<architecture>"; |
6 | modules = [ |
7 | hosts.nixosModule { |
8 | networking.stevenBlackHosts.enable = true; |
9 | } |
10 | ]; |
11 | }; |
12 | }; |
13 | } |