removed password

This commit is contained in:
2025-09-25 21:02:10 -04:00
parent 2ed08501fe
commit 5e03efa1e8

View File

@@ -1,6 +1,5 @@
{ {
pkgs, pkgs,
config,
... ...
}: }:
{ {
@@ -9,8 +8,6 @@
users.dov = { users.dov = {
isNormalUser = true; isNormalUser = true;
hashedPasswordFile = "${config.sops.secrets.dov_password.path}";
shell = pkgs.zsh; shell = pkgs.zsh;
group = "dov"; group = "dov";
openssh.authorizedKeys.keys = [ openssh.authorizedKeys.keys = [
@@ -26,6 +23,4 @@
groups.dov.gid = 1004; groups.dov.gid = 1004;
}; };
home-manager.users.dov = import ./systems/${config.networking.hostName}.nix;
} }