use home-manager module for all networked computers by default

This commit is contained in:
Haak Saxberg 2022-07-31 00:28:11 -07:00
parent a5b561b973
commit 1874ec066e

View file

@ -7,10 +7,16 @@
storage.legacy = { }; storage.legacy = { };
}; };
defaults = { defaults = {
imports = [
# make sure you have properly added the home-manager channel!
<home-manager/nixos>
];
documentation.enable = false; documentation.enable = false;
# for nixops to log in and perform operations as haak (instead of root) # for nixops to log in and perform operations as haak (instead of root)
security.sudo.wheelNeedsPassword = false; security.sudo.wheelNeedsPassword = false;
home-manager.users.haak = (import ../home/commandline.nix);
}; };
nas = { nas = {
deployment.targetHost = "192.168.1.65"; deployment.targetHost = "192.168.1.65";