11 lines
223 B
Nix
11 lines
223 B
Nix
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
{
|
|
# Allow unfree packages
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
# Overlay different packages on top of nixpkgs
|
|
nixpkgs.overlays = [
|
|
(import ../../overlays/pkgs.nix)
|
|
];
|
|
} |