2023-04-04 21:57:12 +02:00
|
|
|
# nixos-configuration
|
|
|
|
|
|
2023-10-06 19:50:24 +02:00
|
|
|
```
|
2023-10-02 17:14:20 +02:00
|
|
|
/
|
|
|
|
|
├── modules
|
|
|
|
|
│ ├── desktop
|
|
|
|
|
│ ├── hardware (includes hostname.nix)
|
|
|
|
|
│ └── users
|
|
|
|
|
└── hostname.nix (imports modules)
|
2023-10-06 19:50:24 +02:00
|
|
|
```
|
2023-10-02 17:14:20 +02:00
|
|
|
|
|
|
|
|
When adding a new host: `ln -s ./new-devicename.nix /etc/nixos/configuration.nix`
|
|
|
|
|
|
|
|
|
|
Use `sudo nix-channel --add https://github.com/nix-community/home-manager/archive/release-23.05.tar.gz home-manager` to add home manager support.
|
|
|
|
|
|