chore: Initial commit.

This commit is contained in:
greysoh 2024-07-13 16:56:20 -04:00
parent 8fd5c7566a
commit 3588bf43b9
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37
10 changed files with 290 additions and 3 deletions

13
secrets.example.nix Normal file
View file

@ -0,0 +1,13 @@
# Example secrets configuration
# There is a better way to do this, but this works.
# To get started:
# 1. Copy this file to 'secrets.nix'
# 2. Run uuidgen (or some other algorithm) to generate a shared secret, and replace services.k3s.token's value with that
# 3. Profit!
let
pkgs = import <nixpkgs> {};
in {
services.k3s.token = "shared.secret.here";
}