Nix expressions for managing hosts, dotfiles, packages etc.
Go to file
Oystein Kristoffer Tveit 50d845a772
kasei: add testconfig file
2024-10-05 12:19:26 +02:00
home home/git: add tmcommit script 2024-10-05 12:07:34 +02:00
hosts kasei: add testconfig file 2024-10-05 12:19:26 +02:00
lib extendedLib: attrsets.concatAttrs -> lib.mergeAttrsList 2024-09-26 10:14:42 +02:00
modules {tsuki/dosei}: set up wstunnel 2024-06-29 13:48:40 +02:00
package-overrides package-overrides: add links to pr 2024-08-19 23:12:14 +02:00
secrets dosei/home/git-maintenance: track work repos 2024-08-05 14:16:44 +02:00
.envrc .envrc: init 2024-08-03 02:25:37 +02:00
.gitignore gitignore: add rule ignoring all nix result types 2023-05-08 02:47:43 +02:00
.sops.yaml hosts/europa: init 2024-07-18 15:10:36 +02:00
LICENSE add LICENSE 2024-08-03 02:22:17 +02:00
README.md kasei: use amd gpu 2024-08-02 17:19:40 +02:00
flake.lock flake: update inputs and follow nixpkgs 2024-06-25 21:34:43 +02:00
flake.nix dosei: install nrf tools 2024-09-25 13:00:06 +02:00

README.md

built with nix

Nix Dotfiles

These are my dotfiles for several nix machines. Here are some of the interesting files and dirs:

Path Purpose
/home home-manager configuration.
/hosts Machine specific NixOS configurations.
/hosts/common/default.nix Configuration that is equal for all hosts.
/lib Custom lib functions that has not been upstreamed (or should not be) to nixpkgs. I'm trying to phase these out as much as possible.
/modules Custom nixos modules that I use in my own configuration. If you see options that does not appear in NixOS Search, they might be defined here.
/package-overrides Updated or pinned versions of packages that have not been upstreamed to nixpkgs (yet).
/secrets Encrypted sops-nix secrets.
flake.nix The root of everyting. Defines the inputs and outputs of the project. Also applies misc overlays and adds config-wide modules. See Nix Flakes for more information.

Hosts

Host Machine type Purpose
Tsuki Dell Poweredge r710 server Data storage / Build server / Selfhosted services. This server hosts a wide variety of services, including websites, matrix server, git repos, CI/CD and more. This is probably the most interesting machine to pick config from
Kasei AMD Zen 2 CPU / AMD GPU - desktop computer Semi-daily driver. This is my main computer at home.
Dosei Dell Optiplex Work computer, mostly used for development and testing.
Europa Dell Optiplex Other work computer, used as nix builder for Dosei.

home-manager configuration

Path Purpose
/home/config Configuration for everything that is not a program, nor a service, and are big enough to warrant their own file or directory.
/home/modules Custom home-manager modules.
/home/packages.nix A list of packages that should be included in the environment.
/home/programs Configuration for programs that have their own home-manager modules.
/home/services Configuration for services/daemons that are user-specific.
/home/shell.nix Shell-agnostic configuration. This includes aliases, envvars, functions, etc.