68 lines
2.3 KiB
Markdown
68 lines
2.3 KiB
Markdown
|
|
**Nixy** is a **Hyprland** NixOS configuration with **home-manager**, **secrets**, and **custom theming** all in one place.
|
|
It's a simple way to manage your system configuration and dotfiles.
|
|
|
|
## Table of Content
|
|
|
|
{md_table_of_content}
|
|
|
|
## Gallery
|
|
|
|

|
|

|
|

|
|
|
|
## Architecture
|
|
|
|
### 🏠 `home`
|
|
|
|
Those are the dotfiles and configuration files for user-level configuration
|
|
|
|
**Subfolders:**
|
|
|
|
- `programs` is a collection of apps configured with home-manager
|
|
- `scripts` is a folder full of bash scripts (see [SCRIPTS.md](docs/SCRIPTS.md))
|
|
- `system` is some "desktop environment" configuration
|
|
- `wallpapers` are... wallpapers
|
|
|
|
### 💻 `hosts`
|
|
|
|
Those are the host-specific configurations
|
|
Each host contains a `configuration.nix` for system-level configuration, a `home.nix` for user-level configuration, and a `variables.nix` for config wide variables.
|
|
|
|
**Subfolders:**
|
|
|
|
- 🎨 `themes` are the themes available *(see [THEMES.md](docs/THEMES.md))*
|
|
- 📦 `modules` are the nix modules that you can import
|
|
- `laptop` is my configuration for my laptop with Nvidia that you can copy
|
|
- `server` is for my homeserver (w/nextcloud, nginx, vaultwarden, ...)
|
|
|
|
## Installation
|
|
|
|
```sh
|
|
git clone https://github.com/anotherhadi/nixy ~/.config/nixos
|
|
```
|
|
|
|
- Copy the `hosts/laptop` folder, rename it to your system name, and change the variables inside the `variables.nix` file
|
|
- Add your `hardware-configuration.nix` to your new host's folder
|
|
- Add your 'nixosConfigurations' inside `flake.nix` (You can edit your hostname one and change the lines containing '# CHANGEME')
|
|
|
|
> [!NOTE]
|
|
> When you add new files, don't forget to run `git add .` to add them to the git repository
|
|
|
|
```sh
|
|
sudo nixos-rebuild switch --flake ~/.config/nixos#yourhostname
|
|
```
|
|
|
|
## Documentation
|
|
|
|
- [THEMES.md](docs/THEMES.md): How themes work and how to create your own
|
|
- [APPS.md](docs/APPS.md): Which apps are installed
|
|
- [SCRIPTS.md](docs/SCRIPTS.md): Scripts that are available
|
|
- [KEYBINDINGS.md](docs/KEYBINDINGS.md): Keybindings available in Hyprland
|
|
- [WALLPAPERS.md](docs/WALLPAPERS.md): Preview of every wallpapers available
|
|
|
|
- [TODO.md](docs/TODO.md): What's next (feel free to contribute)
|
|
- [CONTRIBUTING.md](docs/CONTRIBUTING.md): How to contribute
|
|
- [LICENSE](LICENSE): MIT License
|