1
0
mirror of https://github.com/XNM1/linux-nixos-hyprland-config-dotfiles.git synced 2025-09-15 09:45:58 +03:00
Files
2024-10-16 20:06:13 +03:00

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
];
}