generated from andy/linux-nixos-hyprland-config-dotfiles
22 lines
382 B
Nix
22 lines
382 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# programs.mosh = {
|
|
# enable = true;
|
|
# programs.mosh.openFirewall = false;
|
|
# };
|
|
|
|
# services.openssh = {
|
|
# settings = {
|
|
# PasswordAuthentication = false;
|
|
# KbdInteractiveAuthentication = false;
|
|
# PermitRootLogin = "no";
|
|
# AllowUsers = [ "xnm" ];
|
|
# };
|
|
# };
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
mosh
|
|
];
|
|
}
|