flake.lock: update secrets
hosts/dunamis/users.nix: update secrets hosts/sarien/users.nix: update secrets Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
@ -4,20 +4,21 @@
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
sopSec = config.sops.secrets;
|
||||
s = inputs.mysecrets;
|
||||
inherit (config.sops) secrets;
|
||||
inherit (inputs) mysecrets;
|
||||
in {
|
||||
nix.settings.trusted-users = ["user" "nix-ssh"];
|
||||
users.mutableUsers = false;
|
||||
users.users = {
|
||||
user = {
|
||||
hashedPasswordFile = sopSec."user-password-hashed".path;
|
||||
hashedPasswordFile = secrets."user-password-hashed".path;
|
||||
extraGroups = ["wheel" "video" "libvirtd" "dialout"];
|
||||
isNormalUser = true;
|
||||
shell = pkgs.fish;
|
||||
openssh.authorizedKeys.keyFiles = map (f: s + "/ssh/" + f) [
|
||||
"id_ed25519_sarien_user.pub"
|
||||
"id_ed25519_eldrid_user.pub"
|
||||
openssh.authorizedKeys.keyFiles = map (f: "${mysecrets}/ssh/user/${f}") [
|
||||
"id_dunamis_ed25519.pub"
|
||||
"id_eldrid_ed25519.pub"
|
||||
"id_sarien_ed25519.pub"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
Reference in New Issue
Block a user