diff options
Diffstat (limited to 'user/modules')
-rw-r--r-- | user/modules/nixpkgs.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/user/modules/nixpkgs.nix b/user/modules/nixpkgs.nix new file mode 100644 index 00000000..e0952c9c --- /dev/null +++ b/user/modules/nixpkgs.nix @@ -0,0 +1,14 @@ +{ config, pkgs, ... }: + +{ + imports = [ + ./nix.nix + ]; + nixpkgs.overlays = [ + (self: super: { + unstable = import <nixpkgs-unstable> { + config = config.nixpkgs.config; + }; + }) + ]; +} |