Skip to content

Commit

Permalink
readme: use nixos/hosts
Browse files Browse the repository at this point in the history
  • Loading branch information
mkg20001 committed Feb 7, 2024
1 parent 2cab3f1 commit d632dc9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ flake.nix:
inherit inputs outputs;
};
modules = [
"${./nixos}/${host}"
"${./nixos}/hosts/${host}"
];
}) (builtins.readDir ./nixos);
}) (builtins.readDir ./nixos/hosts);
};
}
```

For each individual host add a `./nixos/HOST/default.nix`. Template:
For each individual host add a `./nixos/hosts/HOST/default.nix`. Template:

```nix
{ config, pkgs, lib, inputs, ... }:
Expand Down

0 comments on commit d632dc9

Please sign in to comment.