This commit is contained in:
Hadi 2024-06-18 12:21:57 +02:00
parent b536a87854
commit 1ad4233def
3 changed files with 16 additions and 15 deletions

View File

@ -49,9 +49,9 @@ It's a simple way to manage your system configuration and dotfiles.
## Gallery
![nixy1](docs/src/nixy/1.png)
![nixy2](docs/src/nixy/2.png)
![nixy3](docs/src/nixy/3.png)
![catppuccin1](docs/src/catppuccin/1.png)
![catppuccin2](docs/src/catppuccin/2.png)
![catppuccin3](docs/src/catppuccin/3.png)
## Architecture
@ -62,7 +62,7 @@ It's a simple way to manage your system configuration and dotfiles.
- 'guest' is a *template* that you can copy and modify for *your own system*
- 'themes' contains all the *themes* available (see [THEMES.md](docs/THEMES.md))
- 'modules' are some nix modules that you can import (nvidia, prime, fonts, ...)
- 🤫 `secrets` are the secrets files encrypted with sops
- 🤫 `secrets` are the secrets files encrypted with sops-nix
## Installation
@ -72,10 +72,10 @@ git clone https://github.com/anotherhadi/nixy ~/.config/nixos
- Copy the `hosts/guest` folder, rename it to your system name and change the variables inside the `variables.nix` file
- Add your `hardware-configuration.nix` to your new hosts folder
- Add your 'nixosConfigurations' inside `flake.nix` (You can edit the "yourhostname" one and change the lines containing #CHANGEME)
- Add your 'nixosConfigurations' inside `flake.nix` (You can edit the "yourhostname" one and change the lines containing '# CHANGEME')
```sh
sudo nixos-rebuild switch --flake ~/.config/nixos#your_hostname
sudo nixos-rebuild switch --flake ~/.config/nixos#yourhostname
```
## Documentation

View File

@ -10,9 +10,9 @@ It's a simple way to manage your system configuration and dotfiles.
## Gallery
![nixy1](docs/src/nixy/1.png)
![nixy2](docs/src/nixy/2.png)
![nixy3](docs/src/nixy/3.png)
![catppuccin1](docs/src/catppuccin/1.png)
![catppuccin2](docs/src/catppuccin/2.png)
![catppuccin3](docs/src/catppuccin/3.png)
## Architecture
@ -23,7 +23,7 @@ It's a simple way to manage your system configuration and dotfiles.
- 'guest' is a *template* that you can copy and modify for *your own system*
- 'themes' contains all the *themes* available (see [THEMES.md](docs/THEMES.md))
- 'modules' are some nix modules that you can import (nvidia, prime, fonts, ...)
- 🤫 `secrets` are the secrets files encrypted with sops
- 🤫 `secrets` are the secrets files encrypted with sops-nix
## Installation
@ -33,10 +33,10 @@ git clone https://github.com/anotherhadi/nixy ~/.config/nixos
- Copy the `hosts/guest` folder, rename it to your system name and change the variables inside the `variables.nix` file
- Add your `hardware-configuration.nix` to your new hosts folder
- Add your 'nixosConfigurations' inside `flake.nix` (You can edit the "yourhostname" one and change the lines containing #CHANGEME)
- Add your 'nixosConfigurations' inside `flake.nix` (You can edit the "yourhostname" one and change the lines containing '# CHANGEME')
```sh
sudo nixos-rebuild switch --flake ~/.config/nixos#your_hostname
sudo nixos-rebuild switch --flake ~/.config/nixos#yourhostname
```
## Documentation

View File

@ -77,7 +77,8 @@
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
users."yourusername" = import ./home/laptop.nix; #CHANGEME
users."yourusername" = import # CHANGEME
./home/laptop.nix; # you can also create a new ./home/yourhostname.nix
extraSpecialArgs = { inherit inputs; };
};
}