My NixOS configuration
  • Nix 84.7%
  • Lua 11.3%
  • Nushell 2.3%
  • Shell 1.7%
Find a file
Felix Schröter de61ec9d1e
Some checks failed
Test / tests (push) Failing after 5m11s
feat(home): add proton-pass-cli
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-08-26 17:23:48 +02:00
.forgejo/workflows ci: build homeConfigurations activation packages 2026-08-23 17:22:41 +02:00
desktop fix(flake): adapt home-assistant & openwrt configs to updated inputs 2026-08-26 15:42:15 +02:00
hardware chore(flake): update inputs 2025-12-09 22:37:12 +01:00
home feat(home): add proton-pass-cli 2026-08-26 17:23:48 +02:00
hosts fix(home-server): remove missing syncthing.nix import 2026-08-26 16:10:33 +02:00
lib fix(flake): adapt home-assistant & openwrt configs to updated inputs 2026-08-26 15:42:15 +02:00
modules feat(systemdNotify): limit to one invocation every 15 minutes per service 2025-09-23 22:18:04 +02:00
overlays fix(overlays): use stdenv.hostPlatform.system instead of deprecated pkgs.system 2026-08-21 12:35:14 +02:00
pkgs chore: remove custom brlaser 2025-05-18 19:42:55 +02:00
scripts feat(tailscale): switch exit node, drop LAN route advertisement 2026-08-23 17:27:41 +02:00
secrets chore(secrets): update site data exceptions 2026-07-06 09:16:34 +02:00
services fix(flake): adapt home-assistant & openwrt configs to updated inputs 2026-08-26 15:42:15 +02:00
system fix(flake): adapt home-assistant & openwrt configs to updated inputs 2026-08-26 15:42:15 +02:00
templates style: reformat with nixfmt-rfc-style 2024-05-26 17:37:08 +02:00
virtualisation feat(libvirt): enable spice-vdagentd for clipboard sharing 2026-08-23 17:52:31 +02:00
.editorconfig style: add .editorconfig 2020-03-21 16:54:32 +01:00
.env.example chore: add restic variables to .env.example 2022-05-12 11:45:10 +02:00
.envrc chore: add restic secrets to .env 2022-05-09 12:26:12 +02:00
.gitignore chore: extend .gitignore 2022-08-08 23:00:01 +02:00
AGENTS.md docs(AGENTS): update AGENTS.md 2026-08-23 16:32:30 +02:00
CLAUDE.md docs: add AGENTS.md with CLAUDE.md symlink 2026-08-19 19:58:07 +02:00
flake.lock chore(flake): update flake.lock 2026-08-26 15:23:47 +02:00
flake.nix chore: upgrade to NixOS 26.05 2026-06-27 00:12:49 +02:00
LICENSE add LICENSE 2020-07-03 08:48:51 +00:00
README.md docs(readme): rewrite installation instructions for disko-install 2026-08-23 17:22:34 +02:00

felschr's NixOS configuration

Installation

  1. Create config for new host in hosts/<host>/ 1.1. the hosts/<host>/hardware.nix will be generated in the following step
  2. Install NixOS via disko-install:
    sudo nix --experimental-features 'nix-command flakes' \
      run 'git.felschr.com/nixos-config#install' -- \
      --flake .#<host> \
      --disk <disk-name> <disk-device>
    
    1.1. When asked enter the LUKS passphrase 1.1. When asked enter the user password

Now set up a device key that will be used by agenix. Create a new key and re-encrypt the secrets on an existing device & pull the changes.
To create a new key run:

mkdir -p /mnt/etc/secrets/initrd
ssh-keygen -t ed25519 -N "" -f /mnt/etc/secrets/initrd/ssh_host_ed25519_key

You will likely need to temporarily set age.identityPaths for the installation to succeed:

age.identityPaths = "/etc/secrets/initrd/ssh_host_ed25519_key";

To install run the following command where <host> matches outputs.nixosConfigurations.<host> in flake.nix:

nixos-install --flake '/mnt/etc/nixos#<host>'

After the installation finished, set a password for the user:

passwd <user>

Updating

Update all flake inputs:

nix flake update

Update a specific flake input:

nix flake lock --update-input <input>

Rebuilding the system

Rebuild the system:

sudo nixos-rebuild switch

Rebuild the system for a remote machine:

sudo nixos-rebuild switch --flake '/etc/nixos#<host>' --target-host user@hostname --use-remote-sudo