2024-11-10 15:46:30 +08:00
|
|
|
# My NixOS Flake Config
|
2024-11-10 20:35:23 +08:00
|
|
|
My NixOS repo with that has the configs for 2 of my NixOS machines.
|
2024-11-10 15:46:30 +08:00
|
|
|
|
2025-01-12 19:16:13 +08:00
|
|
|
## NOTE: Archived.
|
|
|
|
I don't use this anymore. It got too complicated with multiple machines.
|
2024-11-10 20:37:18 +08:00
|
|
|
|
2024-11-10 20:35:23 +08:00
|
|
|
# Structure of NixOS Config
|
2025-01-12 19:15:32 +08:00
|
|
|
|
|
|
|
```.
|
|
|
|
├── flake.lock
|
|
|
|
├── flake.nix
|
|
|
|
├── flatpak-install.sh
|
|
|
|
├── home.nix
|
|
|
|
├── hosts
|
|
|
|
│ ├── aspirenix
|
|
|
|
│ │ ├── configuration.nix
|
|
|
|
│ │ └── hardware-configuration.nix
|
|
|
|
│ ├── bluenix
|
|
|
|
│ │ ├── configuration.nix
|
|
|
|
│ │ └── hardware-configuration.nix
|
|
|
|
│ └── greynix
|
|
|
|
│ ├── configuration.nix
|
|
|
|
│ └── hardware-configuration.nix
|
|
|
|
├── nixosModules
|
|
|
|
│ ├── base.nix
|
|
|
|
│ ├── docker.nix
|
|
|
|
│ ├── fonts.nix
|
|
|
|
│ ├── gnome.nix
|
|
|
|
│ ├── module-docker.nix
|
|
|
|
│ ├── module-modules.nix
|
|
|
|
│ └── systemd.nix
|
|
|
|
├── nix-upgrade.sh
|
|
|
|
├── pull.sh
|
|
|
|
├── README.md
|
|
|
|
├── rebuild.sh
|
|
|
|
├── temp-non-declarative-stuff.txt
|
|
|
|
└── update.sh
|
2024-11-10 15:46:30 +08:00
|
|
|
```
|