Files
clan-core/nixosModules/machineModules/overridePkgs.nix
2025-10-28 09:04:50 +01:00

18 lines
284 B
Nix

{
pkgs,
}:
{
lib,
...
}:
{
imports = [
{
# For vars we need to ensure that the system so we run vars generate on
# is in sync with the pkgs of the system
nixpkgs.hostPlatform = lib.mkForce pkgs.system;
nixpkgs.pkgs = lib.mkForce pkgs;
}
];
}