diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/core/access/mosh.nix | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/modules/core/access/mosh.nix b/modules/core/access/mosh.nix index 7d6d7e9..bc37257 100644 --- a/modules/core/access/mosh.nix +++ b/modules/core/access/mosh.nix @@ -1,9 +1,7 @@ { config, lib, ... }: { - config = lib.mkIf config.modules.mosh.enable { - programs.mosh = { - enable = true; - openFirewall = false; - }; + config.programs.mosh = lib.mkIf config.modules.mosh.enable { + enable = true; + openFirewall = false; }; } |