Files
nixos-configuration/hosts/nidaros/default.nix

14 lines
285 B
Nix
Raw Normal View History

{ lib, systemConfig, ... }:
{
imports = with lib.custom; [
(relativeToBase "modules")
2025-10-14 17:49:00 +02:00
./boot.nix
./hardware.nix
];
# Temp fix to not override password until sops have been implemented
users.users.${systemConfig.username}.hashedPasswordFile = lib.mkForce null;
}