1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-22 18:21:58 +01:00
Go to file
2022-04-11 00:22:58 +02:00
.github chore(deps): bump actions/checkout from 2.4.0 to 3 2022-03-07 14:26:19 +00:00
machines fix: bash does not need to be enabled 2022-02-20 19:18:58 +01:00
overlays overlay: add readarr 2022-04-11 00:22:58 +02:00
profiles chore: initial commit 2022-02-20 17:46:48 +01:00
scripts fix: better handling for partitioning 2022-02-20 18:30:31 +01: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: update flack.lock 2022-02-20 18:49:29 +01:00
flake.nix fix: another try to fix flake outputs 2022-02-20 18:58:16 +01:00
LICENSE chore: initial commit 2022-02-20 17:46:48 +01:00
Makefile chore: initial commit 2022-02-20 17:46:48 +01: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>