Added default.nix to the list of modules in flake.nix and changed PasswordAuthentication to true in configuration.nix.
This commit is contained in:
parent
2db3c0d234
commit
9fc76fba2c
@ -63,8 +63,8 @@
|
||||
athame = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {inherit inputs outputs;};
|
||||
modules = [
|
||||
# > Our main nixos configuration file <
|
||||
./nixos/configuration.nix
|
||||
./nixos/default.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;
|
||||
};
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user