Version Pim's blog using git revision from Nix input

This commit is contained in:
Pim Kunis 2024-04-30 23:22:01 +02:00
parent 70e0fae612
commit b7e5db705b
5 changed files with 105 additions and 21 deletions

View file

@ -2,13 +2,20 @@
machines.lewis = {
arch = "x86_64-linux";
nixosModule.lab = {
backups.enable = true;
data-sharing.enable = true;
nixosModule = {
lab = {
backups.enable = true;
data-sharing.enable = true;
storage = {
osDisk = "/dev/sda";
dataPartition = "/dev/nvme0n1p1";
storage = {
osDisk = "/dev/sda";
dataPartition = "/dev/nvme0n1p1";
};
};
services.tailscale = {
enable = true;
extraUpFlags = [ "--ssh" ];
};
};
};