diff options
| author | Fuwn <[email protected]> | 2024-10-28 09:46:57 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-28 09:46:57 -0700 |
| commit | 4d8c75f900be33317feb360f70d1ffcf7df63726 (patch) | |
| tree | c4baef44862cb3f34091cd421795d3d849210436 /modules/core/access/mosh.nix | |
| parent | options: rename nix.extend to nix.extendedSupport (diff) | |
| download | nixos-config-4d8c75f900be33317feb360f70d1ffcf7df63726.tar.xz nixos-config-4d8c75f900be33317feb360f70d1ffcf7df63726.zip | |
core: move mosh options level up
Diffstat (limited to 'modules/core/access/mosh.nix')
| -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; }; } |