diff options
| author | Fuwn <[email protected]> | 2024-09-22 23:07:43 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-22 23:07:43 -0700 |
| commit | f202a2a63cc1b6a2e2f4fad00bd4ca078bcda556 (patch) | |
| tree | 46c3eba2869e1a73b72923c1582ddbaac2219850 | |
| parent | lock: rui, tsutsumi (diff) | |
| download | nixos-config-f202a2a63cc1b6a2e2f4fad00bd4ca078bcda556.tar.xz nixos-config-f202a2a63cc1b6a2e2f4fad00bd4ca078bcda556.zip | |
core: enable mosh
| -rw-r--r-- | modules/core/default.nix | 5 | ||||
| -rw-r--r-- | modules/server/default.nix | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/modules/core/default.nix b/modules/core/default.nix index ef10e41..b086a28 100644 --- a/modules/core/default.nix +++ b/modules/core/default.nix @@ -4,4 +4,9 @@ ./sops.nix ./tailscale.nix ]; + + programs.mosh = { + enable = true; + openFirewall = false; + }; } diff --git a/modules/server/default.nix b/modules/server/default.nix index 6071c64..39ae163 100644 --- a/modules/server/default.nix +++ b/modules/server/default.nix @@ -1,10 +1,8 @@ { pkgs, ... }: { imports = [ - ../core/nix + ../core ./networking - ../core/sops.nix - ../core/tailscale.nix ./sops.nix ./system.nix ./users.nix |