formatting and nits

This commit is contained in:
2025-03-22 17:20:56 -04:00
parent e573a1b8ed
commit b9fab67b53
5 changed files with 30 additions and 21 deletions

View File

@@ -19,11 +19,13 @@
./services/immich.nix
./services/gitea.nix
./services/minecraft.nix
./services/wg.nix
./services/qbittorrent.nix
./services/bitmagnet.nix
./services/matrix.nix
./services/owntracks.nix
# ./services/matrix.nix
# ./services/owntracks.nix
./services/soulseek.nix
];
@@ -98,7 +100,10 @@
services.openssh = {
enable = true;
settings = {
AllowUsers = [ username "root" ];
AllowUsers = [
username
"root"
];
PasswordAuthentication = false;
PermitRootLogin = "yes"; # for deploying configs
};
@@ -288,7 +293,8 @@
];
};
users.users.root.openssh.authorizedKeys.keys = config.users.users.${username}.openssh.authorizedKeys.keys;
users.users.root.openssh.authorizedKeys.keys =
config.users.users.${username}.openssh.authorizedKeys.keys;
# https://nixos.wiki/wiki/Fish#Setting_fish_as_your_shell
programs.fish.enable = true;