mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-01 12:15:25 +08:00
Fix a regression
This commit is contained in:
parent
17bc071edf
commit
157f07026e
2 changed files with 5 additions and 2 deletions
|
|
@ -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
|
||||
];
|
||||
};
|
||||
|
|
|
|||
|
|
@ -9,6 +9,9 @@
|
|||
in
|
||||
{
|
||||
root.openssh.authorizedKeys.keys = myKeys;
|
||||
${people.myself}.openssh.authorizedKeys.keys = myKeys;
|
||||
${people.myself} = {
|
||||
openssh.authorizedKeys.keys = myKeys;
|
||||
isNormalUser = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue