From 9fc76fba2ccafe070f529b0541bed55fe5f51748 Mon Sep 17 00:00:00 2001 From: Alex Davies Date: Wed, 24 Apr 2024 09:22:30 -0300 Subject: [PATCH] Added default.nix to the list of modules in flake.nix and changed PasswordAuthentication to true in configuration.nix. --- flake.nix | 2 +- nixos/configuration.nix | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 6771a97..e19dffa 100644 --- a/flake.nix +++ b/flake.nix @@ -63,8 +63,8 @@ athame = nixpkgs.lib.nixosSystem { specialArgs = {inherit inputs outputs;}; modules = [ - # > Our main nixos configuration file < ./nixos/configuration.nix + ./nixos/default.nix ]; }; }; diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 55a0a10..4195ac2 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -71,8 +71,6 @@ auto-optimise-store = true; }; - # FIXME: Add the rest of your current configuration - # TODO: Set your hostname networking.hostName = "your-hostname"; @@ -96,7 +94,7 @@ # Forbid root login through SSH. PermitRootLogin = "no"; # Use keys only. Remove if you want to SSH using password (not recommended) - PasswordAuthentication = false; + PasswordAuthentication = true; }; };