Release Ver 1.2.0

This commit is contained in:
Peritia 2025-08-13 11:40:03 +02:00
parent 7f73899c91
commit 89600ebb06
25 changed files with 1862 additions and 57 deletions

View file

@ -20,7 +20,6 @@ Nyx — NixOS System Management Toolkit
| -------------------- | -------- | -------------------------------- |
| NixOS / Nix | ✅ | Core platform |
| `sudo` | ✅ | Needed for system changes |
| Home Manager | ✅ | For integration |
| Git | ✅ | Required for `autoPush` features |
| `nix-output-monitor` | ✅ | Installed automatically by Nyx |
@ -43,12 +42,12 @@ Nyx — NixOS System Management Toolkit
}
```
### 2. Import in Home Manager
### 2. Import in your Configuration
```nix
# home.nix
# configuration.nix
{
imports = [ inputs.nyx.homeManagerModules.default ];
imports = [ inputs.nyx.nixosModules.default ];
}
```
@ -69,6 +68,8 @@ nyx = {
};
```
Checkout the [Documentation](./Documentation/main.md) for a full Guide
---
## Usage
@ -115,7 +116,6 @@ nyx-tui --pretty # TUI with animation
* `nyx-tool` **must be enabled** for other modules.
* `nixDirectory` must be a full Git repo path for `autoPush` to work.
* See `other/example/example-home.nix` for a full working setup.
---