This commit is contained in:
2025-10-18 18:50:42 +02:00
parent 0183d9397a
commit cd8370ae4d
2 changed files with 7 additions and 0 deletions

View File

@@ -15,6 +15,7 @@
hardened-ssh-server.imports = [ ./hardened-ssh-server.nix ]; hardened-ssh-server.imports = [ ./hardened-ssh-server.nix ];
nextcloud.imports = [ ./nextcloud.nix ]; nextcloud.imports = [ ./nextcloud.nix ];
server.imports = [
common.imports = [ common.imports = [
{ {
users.mutableUsers = lib.mkDefault false; users.mutableUsers = lib.mkDefault false;

6
modules/motd.nix Normal file
View File

@@ -0,0 +1,6 @@
{ config, ... }:
{
users.motd = ''
Welcome to ${config.networking.hostName}!
'';
}