diff options
author | Aria <me@aria.rip> | 2023-11-03 14:03:47 +0000 |
---|---|---|
committer | Aria <me@aria.rip> | 2023-11-03 14:03:47 +0000 |
commit | 318522a2613ec7242b2559be66b5edf466a2e5ef (patch) | |
tree | d7f77f065e51e8d28130dad9e7799c8b84b32dfe /tardis-new/lib | |
parent | c6d0cb4950e9d1737a977b134c79a57b37e3327a (diff) |
mess around with tardis stuff
Diffstat (limited to 'tardis-new/lib')
-rw-r--r-- | tardis-new/lib/consts.nix | 7 | ||||
-rw-r--r-- | tardis-new/lib/default.nix | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/tardis-new/lib/consts.nix b/tardis-new/lib/consts.nix new file mode 100644 index 0000000..8e24673 --- /dev/null +++ b/tardis-new/lib/consts.nix @@ -0,0 +1,7 @@ +{ + system = "x86_64-linux"; + + mainDomain = "tardisproject.uk"; + + rootPubKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAVMp9Z6X0SERg4lWn+j3cMXFKssl8aBSM5Fzm+jXzaX aria@casper"; +} diff --git a/tardis-new/lib/default.nix b/tardis-new/lib/default.nix new file mode 100644 index 0000000..338b2c6 --- /dev/null +++ b/tardis-new/lib/default.nix @@ -0,0 +1,3 @@ +final: { + consts = import ./consts.nix; +} |