Fix a regression

This commit is contained in:
Sridhar Ratnakumar 2024-02-20 16:39:13 -05:00
parent 17bc071edf
commit 157f07026e
2 changed files with 5 additions and 2 deletions

View file

@ -8,6 +8,7 @@
common.imports = [
./nix.nix
./caches
./ssh-authorize.nix
];
my-home = {
@ -24,7 +25,6 @@
self.nixosModules.my-home
self.nixosModules.common
./self-ide.nix
./ssh-authorize.nix
./current-location.nix
];
};

View file

@ -9,6 +9,9 @@
in
{
root.openssh.authorizedKeys.keys = myKeys;
${people.myself}.openssh.authorizedKeys.keys = myKeys;
${people.myself} = {
openssh.authorizedKeys.keys = myKeys;
isNormalUser = true;
};
};
}