18 lines
346 B
Nix
18 lines
346 B
Nix
|
|
{
|
||
|
|
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 ];
|
||
|
|
};
|
||
|
|
}
|