fixed some mistakes
This commit is contained in:
parent
5aee8e032e
commit
4199d6cbb1
5 changed files with 13 additions and 3 deletions
|
@ -9,6 +9,11 @@ in
|
|||
{
|
||||
options.kropcloud.drives = {
|
||||
hasSecondDrive = lib.mkEnableOption "Whence this VM has second drive";
|
||||
secondDriveMountpoint = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = "/mnt/nas";
|
||||
description = "The mountpoint for the second drive";
|
||||
};
|
||||
};
|
||||
config = {
|
||||
disko.devices = {
|
||||
|
|
|
@ -5,5 +5,6 @@
|
|||
./tailscale
|
||||
./hydra
|
||||
./k3s
|
||||
./nfs
|
||||
];
|
||||
}
|
||||
|
|
Binary file not shown.
|
@ -7,7 +7,8 @@
|
|||
"test-server": "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAID4ioqiTzYe6Y6H0YfFkWyDBbCB25wYs3gKNZIufE/Sn",
|
||||
"node0": "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIITESdAzft5+WqMWM2A9Tix8BDWGnVv3z0IF8mqXwWA0",
|
||||
"node1": "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMxhznyKJwumO3jzm9kjH+lZJln7fypT8YKAdLNhVspU",
|
||||
"node2": "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOkaqX7Omdrfa4Ot3J+k6EBUkPWp/frEYIFzS1OLc3tw"
|
||||
"node2": "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOkaqX7Omdrfa4Ot3J+k6EBUkPWp/frEYIFzS1OLc3tw",
|
||||
"node-nfs": "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKv1xIg3+faoigxh6S9hUJMIPe2KP6Qb3PQtvFynkrtI"
|
||||
},
|
||||
"secrets": {
|
||||
"mypassword.age": [
|
||||
|
@ -16,14 +17,17 @@
|
|||
"servers:test-server",
|
||||
"servers:node0",
|
||||
"servers:node1",
|
||||
"servers:node2"
|
||||
"servers:node2",
|
||||
"servers:node-nfs",
|
||||
"servers:node-nfs"
|
||||
],
|
||||
"k3stoken.age": [
|
||||
"hosts:wenar-nix",
|
||||
"hosts:lenar",
|
||||
"servers:node0",
|
||||
"servers:node1",
|
||||
"servers:node2"
|
||||
"servers:node2",
|
||||
"servers:node-nfs"
|
||||
]
|
||||
}
|
||||
}
|
Binary file not shown.
Loading…
Reference in a new issue