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