[nidaros] Add initial Nidaros homelab config

This commit is contained in:
2025-10-08 20:07:14 +02:00
parent dcfa416eb6
commit cfb4131cf3
5 changed files with 153 additions and 0 deletions

13
hosts/nidaros/default.nix Normal file
View File

@@ -0,0 +1,13 @@
{ lib, systemConfig, ... }:
{
imports = with lib.custom; [
(relativeToBase "modules")
./configuration.nix
./hardware.nix
];
# Temp fix to not override password until sops have been implemented
users.users.${systemConfig.username}.hashedPasswordFile = lib.mkForce null;
}