Compare commits

...

2 commits

Author SHA1 Message Date
acd0475c82
use hostname 2024-09-27 17:15:57 -04:00
84142331f4
add user 2024-09-27 17:15:51 -04:00
2 changed files with 9 additions and 1 deletions

View file

@ -32,6 +32,7 @@
isNormalUser = true;
shell = pkgs.zsh;
homeMode = "755";
linger = true;
openssh.authorizedKeys.keyFiles = [(builtins.fetchurl "https://ezri.pub")];
};
users.users.melody = {
@ -110,4 +111,11 @@
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIC/RsyBWkCZuVUC5ADDRn9b/KM8vC3h3dPAEnCMOhLVR pubNIX"
];
};
users.users.easrng = {
uid = 2014;
isNormalUser = true;
linger = true;
homeMode = "755";
openssh.authorizedKeys.keyFiles = [(builtins.fetchurl "https://github.com/easrng.keys")];
};
}

View file

@ -9,7 +9,7 @@ in
"stella" = { pkgs, ... }: {
deployment = {
targetHost = "198.8.59.4";
targetHost = "stella.wolfgirl.systems";
};
imports = [
./hosts/stella.nix