mirror of
https://github.com/blahai/nyx.git
synced 2025-02-23 20:05:10 +00:00
15 lines
312 B
Nix
15 lines
312 B
Nix
|
{
|
||
|
lib,
|
||
|
config,
|
||
|
...
|
||
|
}: let
|
||
|
inherit (builtins) elem;
|
||
|
inherit (lib.modules) mkIf;
|
||
|
in {
|
||
|
config = mkIf (elem "pingu" config.olympus.system.users) {
|
||
|
users.users.pingu.openssh.authorizedKeys.keys = [
|
||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILPbmiNqoyeKXk/VopFm2cFfEnV4cKCFBhbhyYB69Fuu"
|
||
|
];
|
||
|
};
|
||
|
}
|