mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-02-23 16:49:01 -05:00
17 lines
285 B
Nix
17 lines
285 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment = {
|
|
systemPackages = with pkgs; [
|
|
kitty.terminfo
|
|
];
|
|
};
|
|
services = {
|
|
openssh = {
|
|
enable = true;
|
|
authorizedKeysFiles = [ "${./ssh.keys}" ];
|
|
settings = {
|
|
PasswordAuthentication = false;
|
|
};
|
|
};
|
|
};
|
|
}
|