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