Merge branch 'Dev' into readme

This commit is contained in:
Peritia 2025-08-25 09:06:46 +02:00 committed by GitHub
commit 08368e44b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 251 additions and 9 deletions

View file

@ -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:
```