commit 87f802d3a4c8225416a89f464b073e1ede63b0d6
parent 9b19c95ae624270001db1696fdff861c40cc9ffb
Author: Francesco Saccone <francesco@francescosaccone.com>
Date: Thu, 15 May 2025 09:15:23 +0200
refactor: move openssh from 'modules' to 'security'
Signed-off-by: Francesco Saccone <francesco@francescosaccone.com>
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/nixos/openssh/default.nix b/modules/nixos/openssh/default.nix
@@ -6,7 +6,7 @@
...
}:
{
- options.modules.openssh = {
+ options.security.openssh = {
agent = {
enable = lib.mkOption {
description = "Whether to enable the OpenSSH agent.";
@@ -40,7 +40,7 @@
config =
let
- inherit (config.modules.openssh)
+ inherit (config.security.openssh)
agent
listen
;