nixops for managing nas, take 1

This commit is contained in:
Haak Saxberg 2022-07-30 19:42:03 -07:00
parent 15dfc5c9b7
commit a98013a0ea
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{
network = {
name = "house";
enableRollback = true;
description = "machines used in my house";
storage.legacy = { };
};
defaults = {
documentation.enable = false;
};
nas = {
deployment.targetHost = "192.168.1.65";
deployment.targetUser = "haak";
imports = [ ../system/xps11/configuration.nix ];
};
}