1
Fork 0
Modular NixOS configuration.
Find a file
2023-08-27 20:23:43 +00:00
.github/workflows Update main.yml 2023-07-06 15:30:46 +00:00
packages fix 2023-07-22 01:53:41 +02:00
sets/meta Add configuration for dirae.org 2023-07-01 15:08:00 +02:00
systems Migrate to gitea 2023-07-19 22:25:34 +02:00
users Add configuration for dirae.org 2023-07-01 15:08:00 +02:00
.gitignore Add wireguard configuration 2023-06-25 17:10:38 +02:00
flake.lock flake.lock: Update 2023-08-27 08:17:34 +00:00
flake.nix Migrate to gitea 2023-07-19 22:25:34 +02:00
README.md Update file README.md 2023-07-01 13:50:56 +00:00

nixos-system-config

Modular multi-purpose NixOS configuration.

About

Feel free to do whatever with this configuration.
This configuration erases your darlings using ZFS snapshots.
Currently only used for my homeserver, desktop runs on Gentoo.

Layout

/nix/config
├── flake.lock
├── flake.nix                   ; Master configuration file
├── overlays                    ; Package overlays
├── packages                    ; Packages with configurations
│   ├── nginx
│   │   └── homeserver.nix
│   ├── syncthing
│   │   └── homeserver.nix
│   └── vim
│       └── package.nix
├── pw                          ; Password of your user
├── sets                        ; Sets of packages 
│   └── meta
│       └── sysadmin.nix
├── systems                     ; System specific configuration
│   ├── common.nix
│   ├── hardware                ; Hardware configuration of each system
│   │   ├── homeserver.nix
│   │   └── qemu-vm.nix
│   ├── homeserver.nix
│   ├── persist                 ; Persistence configuration of each system
│   │   ├── common.nix
│   │   ├── homeserver.nix
│   │   └── qemu-vm.nix
│   └── qemu-vm.nix
└── users                       ; User specific configuration
    ├── media.nix
    ├── none.nix
    └── user.nix