✨ A modular NixOS configuration with Flakes support
❄️ Snowflake-inspired infrastructure for your systems
- NixOS 24.11 (Vicuña) or newer
- Flakes enabled in
/etc/nixos/configuration.nix
:{ nix.settings.experimental-features = [ "nix-command" "flakes" ]; }
# Generate hardware configuration
sudo rm -rf /etc/nixos/*; sudo nixos-generate-config
# Build and activate configuration
sudo nixos-rebuild switch --flake .#$(hostname) --impure
nixcfg/
├── hosts/ # Host-specific configs
│ ├── common/ # 📁 Shared configurations
│ │ ├── base.nix # 🖥️ Core system settings
│ │ ├── desktop.nix # 🖥️ GUI/Desktop environment
│ │ └── users.nix # 👤 User configurations
│ └── <hostname>/ # 💻 Device-specific configs
│ ├── config.nix # ⚙️ Host settings
│ └── hardware.nix # 🔧 Auto-generated hardware
├── modules/ # 🧩 Reusable service modules
│ ├── docker.nix # 🐳 Docker configuration
│ └── flatpak.nix # 📦 Flatpak setup
└── flake.nix # ❄️ Flakes entry point
nix flake update
sudo nixos-rebuild switch --flake .#$(hostname) --impure
nix-collect-garbage --delete-older-than 15d
Note
The--impure
flag is required for proper environment variable handling in flakes
- 🔄 Automatic Updates: Weekly GC and auto-upgrade
- 🧩 Modular Design: Easy to maintain and extend
- 💻 Multi-Device Support: Share configs between machines
- 🛡️ Reproducible Builds: Fully declarative configuration
- Add
modules/new-module.nix
- Import in host config:
imports = [ ./modules/new-module.nix ];