10 lines
157 B
Nix
10 lines
157 B
Nix
{ inputs, system, ... }:
|
|
{
|
|
imports = [ inputs.nur.modules.nixos.default ];
|
|
|
|
nixpkgs = {
|
|
hostPlatform = system;
|
|
config.allowUnfree = true;
|
|
};
|
|
}
|