Files
nix/hosts/common/configs/system/nixpkgs/default.nix
2025-02-10 13:30:18 +00:00

10 lines
157 B
Nix

{ inputs, system, ... }:
{
imports = [ inputs.nur.modules.nixos.default ];
nixpkgs = {
hostPlatform = system;
config.allowUnfree = true;
};
}