1
0
mirror of https://github.com/XNM1/linux-nixos-hyprland-config-dotfiles.git synced 2025-09-15 09:45:58 +03:00

added mosh package and module

This commit is contained in:
xnm
2024-10-16 20:06:13 +03:00
parent 59ea19d35d
commit dcfa059914
2 changed files with 22 additions and 0 deletions

21
nixos/mosh.nix Normal file
View File

@@ -0,0 +1,21 @@
{ 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
];
}