populated configuration

This commit is contained in:
2024-08-13 14:49:24 +09:00
parent f295d29525
commit 603379ca7b
17 changed files with 278 additions and 3 deletions

4
system/services/cups.nix Normal file
View File

@@ -0,0 +1,4 @@
{...}:
{
services.printing.enable = true;
}

View File

@@ -0,0 +1,4 @@
{ ... }:
{
networking.networkmanager.enable = true;
}

9
system/services/ssh.nix Normal file
View File

@@ -0,0 +1,9 @@
{...}:
{
services.openssh = {
enable = true;
settings = {
PermitRootLogin = "yes";
};
};
}