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;
     };
   };