Update Readme

This commit is contained in:
DashieTM 2024-09-29 12:51:38 +02:00
parent b72d409a5a
commit 314a067795

View file

@ -26,7 +26,7 @@ dashNix = {
You can then configure your systems in your flake outputs with a provided library command:
```nix
nixosConfigurations = inputs.dashNix.dashNixLib.build_systems ./.;
nixosConfigurations = inputs.dashNix.dashNixLib.build_systems { root = ./.; };
```
This command will build each system that is placed within the hosts/ directory.
@ -148,9 +148,7 @@ nixosConfigurations =
home = [];
}
in
(inputs.dashNix.dashNixLib.build_systems [
"system1"
] ./. mods additionalMods);
inputs.dashNix.dashNixLib.build_systems { root = ./.; inherit mods additionalMods; };
```
# Installation