Update Readme
This commit is contained in:
parent
b72d409a5a
commit
314a067795
1 changed files with 3 additions and 5 deletions
|
|
@ -26,7 +26,7 @@ dashNix = {
|
||||||
You can then configure your systems in your flake outputs with a provided library command:
|
You can then configure your systems in your flake outputs with a provided library command:
|
||||||
|
|
||||||
```nix
|
```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.
|
This command will build each system that is placed within the hosts/ directory.
|
||||||
|
|
@ -148,9 +148,7 @@ nixosConfigurations =
|
||||||
home = [];
|
home = [];
|
||||||
}
|
}
|
||||||
in
|
in
|
||||||
(inputs.dashNix.dashNixLib.build_systems [
|
inputs.dashNix.dashNixLib.build_systems { root = ./.; inherit mods additionalMods; };
|
||||||
"system1"
|
|
||||||
] ./. mods additionalMods);
|
|
||||||
```
|
```
|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
|
|
@ -199,5 +197,5 @@ For package lists, please check the individual modules, as the lists can be long
|
||||||
- kitty: Enables and configures kitty terminal
|
- kitty: Enables and configures kitty terminal
|
||||||
- oxi: My own programs, can be selectively disabled, or as a whole
|
- oxi: My own programs, can be selectively disabled, or as a whole
|
||||||
- mime: Mime type configuration
|
- mime: Mime type configuration
|
||||||
- xkb: Keyboard layout configuration
|
- xkb: Keyboard layout configuration
|
||||||
- scripts: Various preconfigured scripts with the ability to add more
|
- scripts: Various preconfigured scripts with the ability to add more
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue