dotfiles/nix/deployments/nixops.nix

21 lines
469 B
Nix
Raw Normal View History

2022-07-30 19:42:03 -07:00
{
network = {
name = "house";
enableRollback = true;
description = "machines used in my house";
storage.legacy = { };
};
defaults = {
documentation.enable = false;
# for nixops to log in and perform operations as haak (instead of root)
security.sudo.wheelNeedsPassword = false;
2022-07-30 19:42:03 -07:00
};
nas = {
deployment.targetHost = "192.168.1.65";
deployment.targetUser = "haak";
imports = [ ../system/xps11/configuration.nix ];
};
}