mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 07:05:51 +05:30
11 lines
266 B
Nix
11 lines
266 B
Nix
|
{ userSettings, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [ ../homelab/base.nix
|
||
|
( import ../../system/security/sshd.nix {
|
||
|
# TODO add public ssh key for worklab
|
||
|
authorizedKeys = [ ];
|
||
|
inherit userSettings; })
|
||
|
];
|
||
|
}
|