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:
@@ -46,6 +46,7 @@
|
|||||||
./networking.nix
|
./networking.nix
|
||||||
# ./mac-randomize.nix
|
# ./mac-randomize.nix
|
||||||
# ./open-ssh.nix
|
# ./open-ssh.nix
|
||||||
|
./mosh.nix
|
||||||
./firewall.nix
|
./firewall.nix
|
||||||
./dns.nix
|
./dns.nix
|
||||||
# ./vpn.nix
|
# ./vpn.nix
|
||||||
|
21
nixos/mosh.nix
Normal file
21
nixos/mosh.nix
Normal 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
|
||||||
|
];
|
||||||
|
}
|
Reference in New Issue
Block a user