summaryrefslogtreecommitdiff
path: root/modules/core/access/mosh.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-28 09:46:57 -0700
committerFuwn <[email protected]>2024-10-28 09:46:57 -0700
commit4d8c75f900be33317feb360f70d1ffcf7df63726 (patch)
treec4baef44862cb3f34091cd421795d3d849210436 /modules/core/access/mosh.nix
parentoptions: rename nix.extend to nix.extendedSupport (diff)
downloadnixos-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.nix8
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;
};
}