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

{
  imports = [
    ./nix.nix
  ];
  nixpkgs.overlays = [
    (self: super: {
      unstable = import <nixos-unstable> {
        config = config.nixpkgs.config;
      };
    })
  ];
}