mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-08 05:49:25 -06:00
test: setting up nas structure
This commit is contained in:
parent
b5614b006f
commit
2fdadf15f0
17 changed files with 662 additions and 94 deletions
34
modules/nixos/nas/opencloud/default.nix
Normal file
34
modules/nixos/nas/opencloud/default.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{ flake, ... }:
|
||||
let
|
||||
inherit (import ./config) opencloudVM;
|
||||
inherit (flake.config.people) user0;
|
||||
|
||||
opencloudNick = opencloudVM {
|
||||
user = user0;
|
||||
ip = "192.168.50.67";
|
||||
mac = "02:00:00:00:57:67";
|
||||
userMac = "02:00:00:00:00:67";
|
||||
ssh = 2507;
|
||||
host = "";
|
||||
};
|
||||
|
||||
opencloudStacie = opencloudVM {
|
||||
user = "stacie";
|
||||
ip = "192.168.50.68";
|
||||
mac = "02:00:00:00:58:68";
|
||||
userMac = "02:00:00:00:00:68";
|
||||
ssh = 2508;
|
||||
host = "";
|
||||
};
|
||||
|
||||
opencloudGarnet = opencloudVM {
|
||||
user = "garnet";
|
||||
ip = "192.168.50.69";
|
||||
mac = "02:00:00:00:59:69";
|
||||
userMac = "02:00:00:00:00:69";
|
||||
ssh = 2509;
|
||||
host = "";
|
||||
};
|
||||
|
||||
in
|
||||
opencloudNick // opencloudStacie // opencloudGarnet
|
||||
Loading…
Add table
Add a link
Reference in a new issue