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

13 lines
270 B
Nix
Raw Normal View History

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