remove status user

This commit is contained in:
Julien Malka 2024-03-30 21:01:22 +01:00
parent 07fc454ac0
commit f94bcc2646
Signed by: Luj
GPG key ID: 6FC74C847011FD83

View file

@ -1,16 +0,0 @@
{ pkgs, ... }: {
users.users.status = {
isNormalUser = true;
home = "/home/status";
extraGroups = [ "wheel" ];
openssh.authorizedKeys.keyFiles = [
(pkgs.fetchurl {
url = "https://github.com/JulienMalka.keys";
sha256 = "sha256-Ooh97vo6d4NR6xDhLpofWPYgImPFrwSWBOGxkZUWscQ=";
})
];
};
nix.settings.allowed-users = [ "status" ];
}