aboutsummaryrefslogtreecommitdiff
path: root/modules/services/openssh.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/services/openssh.nix')
-rw-r--r--modules/services/openssh.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/modules/services/openssh.nix b/modules/services/openssh.nix
deleted file mode 100644
index c6a73cb..0000000
--- a/modules/services/openssh.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- config,
- username,
- lib,
- ...
-}:
-{
- options.nx.services.openssh.enable = lib.mkEnableOption "Enable openssh service";
- config = lib.mkIf config.nx.services.openssh.enable {
- services.openssh = {
- enable = true;
- settings = {
- AllowUsers = [ username ];
- };
- };
- };
-}