Dernière activité 1728960603

HOSTS-readme-12.nix Brut
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}