From b68a45e93ce2c8861ad84fb8e13f37dccb1b28ad Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Mon, 5 Jun 2023 21:23:55 -0400 Subject: [PATCH] Fix non boolean values --- README.org | 6 +++--- modules/godot.nix | 2 +- modules/ssh.nix | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.org b/README.org index f5a4bd2..2a2ecb1 100644 --- a/README.org +++ b/README.org @@ -754,8 +754,8 @@ Apply some configuration to the default settings: services.openssh = { enable = true; settings = { - PermitRootLogin = false; - PasswordAuthentication = false; + PermitRootLogin = "no"; + PasswordAuthentication = "no"; }; }; } @@ -814,7 +814,7 @@ in { pkgs.godot pkgs.godot-server pkgs.godot-headless - pkgs.python310Packages.gdtoolkit + pkgs.gdtoolkit ]; } #+END_SRC diff --git a/modules/godot.nix b/modules/godot.nix index e67291b..58a5318 100644 --- a/modules/godot.nix +++ b/modules/godot.nix @@ -7,6 +7,6 @@ pkgs.godot pkgs.godot-server pkgs.godot-headless - pkgs.python310Packages.gdtoolkit + pkgs.gdtoolkit ]; } diff --git a/modules/ssh.nix b/modules/ssh.nix index 8abdc79..21c2a2d 100644 --- a/modules/ssh.nix +++ b/modules/ssh.nix @@ -5,8 +5,8 @@ services.openssh = { enable = true; settings = { - PermitRootLogin = false; - PasswordAuthentication = false; + PermitRootLogin = "no"; + PasswordAuthentication = "no"; }; }; }