[infradocs] init

This commit is contained in:
2025-01-15 13:32:26 +01:00
parent 8e8ddb1435
commit ea99bbde25
2 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{ config, lib, pkgs, inputs, ... }:
with lib;
{
networking = {
hostName = mkDefault "infradocs";
useDHCP = false;
nameservers = [ "1.1.1.1" ];
};
imports = [
../durruti/documentation.nix
../modules/malobeo_user.nix
../modules/sshd.nix
];
system.stateVersion = "22.11"; # Did you read the comment?
}