Fix issue
This commit is contained in:
parent
50eff31327
commit
c548d24239
3 changed files with 6 additions and 3 deletions
|
@ -45,7 +45,7 @@
|
|||
]
|
||||
++ dirFiles ".nix" "${./clients}/${hostname}"
|
||||
++ dirFiles ".nix" ./modules/common
|
||||
++ opt (!isDesktop) (dirFiles ./modules/server)
|
||||
++ opt (!isDesktop) (dirFiles ".nix" ./modules/server)
|
||||
++ opt isDesktop (
|
||||
(dirFiles ".nix" ./modules/desktop)
|
||||
++ [
|
||||
|
|
|
@ -4,8 +4,7 @@
|
|||
lib,
|
||||
...
|
||||
}: {
|
||||
environment.systemPackages = [inputs.agenix.packages.x86_64-linux.default]; # TODO: USE WRAPPER
|
||||
|
||||
environment.systemPackages = [inputs.agenix.packages.x86_64-linux.default];
|
||||
age = {
|
||||
identityPaths = [
|
||||
"/home/quadradical/.ssh/id_ed25519"
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
{
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
knownHosts.quadraticpc.publicKeyFile = builtins.fetchurl {
|
||||
url = "https://github.com/Henry-Hiles.keys";
|
||||
sha256 = "1k73c228rgzq7ymf5vaj6wfqzkqm6yzq5lq0syb7mzbrvngvr2jc";
|
||||
};
|
||||
settings = {
|
||||
PasswordAuthentication = true; # TODO: False
|
||||
AllowUsers = ["quadradical"];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue