11 lines
176 B
Nix
11 lines
176 B
Nix
|
{ config, ... }:
|
||
|
{
|
||
|
nixpkgs = {
|
||
|
# Configure your nixpkgs instance
|
||
|
config = {
|
||
|
# Disable if you don't want unfree packages
|
||
|
allowUnfree = true;
|
||
|
};
|
||
|
};
|
||
|
}
|