16 lines
341 B
Nix
16 lines
341 B
Nix
{ lib, systemConfig, ... }:
|
|
|
|
{
|
|
imports = with lib.custom; [
|
|
(relativeToBase "modules")
|
|
./boot.nix
|
|
./hardware.nix
|
|
./security
|
|
];
|
|
|
|
# Temp fix to not override password until sops have been implemented
|
|
users.mutableUsers = lib.mkForce true;
|
|
users.users.${systemConfig.username}.hashedPasswordFile = lib.mkForce null;
|
|
|
|
}
|