Merge branch 'Dev' into readme
This commit is contained in:
commit
08368e44b8
10 changed files with 251 additions and 9 deletions
22
README.md
22
README.md
|
|
@ -53,6 +53,15 @@ NixOS-95/
|
|||
nix.settings.experimental-features = ["nix-command" "flakes" "pipe-operators"];
|
||||
Enabled
|
||||
|
||||
You can initilize a new flake-based configuration with:
|
||||
```
|
||||
# minimal
|
||||
nix flake init -t github:Peritia-System/NixOS-95/Dev
|
||||
# with home-manager
|
||||
nix flake init -t github:Peritia-System/NixOS-95/Dev#home-manager
|
||||
```
|
||||
|
||||
Or follow the manual installation process:
|
||||
|
||||
### 1. Add Nixos95 to your flake and import the module
|
||||
|
||||
|
|
@ -74,7 +83,18 @@ NixOS-95/
|
|||
}
|
||||
```
|
||||
|
||||
### 2. Enable modules
|
||||
If you are using home-manager you should also pin your version for Nixos95:
|
||||
```
|
||||
{
|
||||
inputs = {
|
||||
...
|
||||
nixos95.inputs.home-manager.follows = "home-manager";
|
||||
};
|
||||
...
|
||||
}
|
||||
```
|
||||
|
||||
### 2. Import in Configuration.nix
|
||||
|
||||
You can configure Nixos95 under the `nixos95` namespace. For a minimal config just set:
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue