Version Pim's blog using git revision from Nix input
This commit is contained in:
parent
70e0fae612
commit
b7e5db705b
5 changed files with 105 additions and 21 deletions
|
@ -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" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Reference in a new issue