1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-22 18:21:58 +01:00
Go to file
2022-09-26 13:13:16 +02:00
.github chore(deps): bump actions/checkout from 2.4.0 to 3 2022-03-07 14:26:19 +00:00
machines chore: mostly fix all builds 2022-09-26 13:13:16 +02:00
overlays feat(overlays): drop readarr package 2022-04-11 00:22:59 +02:00
profiles chore(profiles): drop useless blank lines 2022-04-11 00:23:00 +02:00
scripts feat: restructure media software 2022-05-19 16:17:09 +02:00
secrets fix(secrets) better naming for secrets 2022-04-11 00:22:59 +02:00
.editorconfig chore: initial commit 2022-02-20 17:46:48 +01:00
.gitignore chore: initial commit 2022-02-20 17:46:48 +01:00
flake.lock chore: mostly fix all builds 2022-09-26 13:13:16 +02:00
flake.nix chore: mostly fix all builds 2022-09-26 13:13:16 +02:00
LICENSE chore: initial commit 2022-02-20 17:46:48 +01:00
Makefile feat: restructure media software 2022-05-19 16:17:09 +02:00
README.md docs: properly write install instructions 2022-02-20 19:15:31 +01:00
shell.nix chore: initial commit 2022-02-20 17:46:48 +01:00

nixos-config

Build

Provisioning for my NixOS systems based on Nix.

Secrets

Generally all secrets are encrypted with agenix, so make sure to copy the SSH keys from the secrets stick with these commands:

mkdir -p $HOME/.ssh
cp /mnt/secrets/ssh/id_* $HOME/.ssh/
chmod u=rw,g=,o= $HOME/.ssh/id_*

Prepare

Asgard

Bootstrap

sudo nix-shell --packages nixUnstable

bash -c "$(curl -fsSL https://raw.githubusercontent.com/tboerger/nixos-config/master/scripts/asgard-partitions)"
nixos-install --root /mnt --flake github:tboerger/nixos-config#asgard

Updates

If the repository had been cloned you could just execute make switch, otherwise there is still this long option to update the deployment:

nixos-rebuild switch \
    --flake github:tboerger/nixos-config#asgard

Utgard

Bootstrap

sudo nix-shell --packages nixUnstable

bash -c "$(curl -fsSL https://raw.githubusercontent.com/tboerger/nixos-config/master/scripts/utgard-partitions)"
nixos-install --root /mnt --flake github:tboerger/nixos-config#utgard

Updates

If the repository had been cloned you could just execute make switch, otherwise there is still this long option to update the deployment:

nixos-rebuild switch \
    --flake github:tboerger/nixos-config#utgard

Security

If you find a security issue please contact thomas@webhippie.de first.

Contributing

Fork -> Patch -> Push -> Pull Request

Authors

License

Apache-2.0

Copyright (c) 2021 Thomas Boerger <thomas@webhippie.de>