Code refactor

This commit is contained in:
2026-01-31 21:19:32 +01:00
parent c26d9bf209
commit 26f641b191
13 changed files with 84 additions and 75 deletions

View File

@@ -1,15 +1,17 @@
{ ... }:
{
services.flatpak.enable = true;
services = {
flatpak.enable = true;
# Enable CUPS to print documents.
services.printing.enable = true;
services.openssh = {
enable = true;
ports = [ 22 ];
settings = {
PasswordAuthentication = true;
PermitRootLogin = "no";
# Enable CUPS to print documents.
printing.enable = true;
openssh = {
enable = true;
ports = [ 22 ];
settings = {
PasswordAuthentication = true;
PermitRootLogin = "no";
};
};
};
}