nix-config/STRUCTURE.md

36 lines
2 KiB
Markdown
Raw Normal View History

2024-04-11 23:11:53 +02:00
This file contains a small overview over the contents and structure of this repository, mainly for me to remember where I put my shit.
- `config/` contains shared nixos configuration
- `basic/` the basic system configuration, this should be applied for all systems
- `system.nix` a far descendant of the original `configuration.nix`
any global configuration should be done here first and later moved to their own file if necessary
2024-10-30 19:41:00 +01:00
- `support/` configuration for supporting specific hardware or use cases on a system level
2024-04-11 23:11:53 +02:00
- `services/` configuration for independent services
- `hosts/` contain nixos configuration for hosts
- `<hostname>/` configuration for hosts
- `default.nix` Toplevel system definition
- `fs.nix` file system definiton
- `net.nix` network setup
- *`guests.nix`* optional config for guest systems
- `secrets/` secrets local to this hosts
- `secrets.nix.age` local secrets usable while evaluating
- `host.pub` host public key, needed for rekeying agenix secrets
- `keys/` public keys needed for evaluating the system
- `modules/` extra nixos modules
2024-10-30 19:41:00 +01:00
- `modules-hm/` extra home-manager or home management modules
2024-04-11 23:11:53 +02:00
- `nix/` additional nix functions
- `devshell.nix` Development shell
- `extra-builtins.nix` Extra builtin plugin file to enable repository secrets
- `pkgs/` additional packages
- `secrets/` global secrets
- `recipients.txt` rage recipient file for encrypting secrets
- currently containing all yubikeys and a rage backup key
- `secrets.nix.age` global secrets available at deploy
- `users/` home manager user configuration
2024-10-30 19:41:00 +01:00
- `patrick` personal configuration for myself
- `programs/` configuration for miscellaneous programs
2024-10-30 19:24:16 +01:00
- `wayland/` configuration for wayland windowmanagers and basic utilities
- `xorg/` configuration for xorg windowmanagers and basic utilities
2024-10-30 19:41:00 +01:00
- `root` minimal configuration for root
2024-11-05 15:20:07 +01:00
' `patches` patche to be applied to nixpkgs before the system is built