summary refs log tree commit diff stats
path: root/user/modules/nixpkgs.nix
blob: b89579e1553bc4255bd9c6b6afbe1b3ea4f0f84c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, pkgs, ... }:

{
  imports = [
    ./nix.nix
  ];
  nixpkgs.overlays = [
    (self: super: {
      unstable = self;
    })
  ];
}