mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-08 04:38:06 +01:00
18 lines
260 B
Nix
18 lines
260 B
Nix
{ ... }:
|
|
{
|
|
services = {
|
|
flatpak.enable = true;
|
|
|
|
# Enable CUPS to print documents.
|
|
printing.enable = true;
|
|
openssh = {
|
|
enable = true;
|
|
ports = [ 22 ];
|
|
settings = {
|
|
PasswordAuthentication = true;
|
|
PermitRootLogin = "no";
|
|
};
|
|
};
|
|
};
|
|
}
|