Update flake.nix

add git
This commit is contained in:
2023-11-21 14:39:18 -05:00
committed by GitHub
parent a69dff19ed
commit f892b7f5c2

View File

@@ -90,11 +90,16 @@
&& baseNameOf path != "secrets")
../.;
environment.systemPackages = [
pkgs.git #gotta have git
];
services.openssh = {
enable = true;
settings.PermitRootLogin = "yes";
};
users.extraUsers.root.initialPassword = lib.mkForce "test123";
users.extraUsers.root.initialPassword = lib.mkForce "odroid";
})
];
};