Add the unstable channel.
This commit is contained in:
parent
7b95e9c17b
commit
da31be84da
|
@ -1,6 +1,6 @@
|
||||||
# The main configuration file.
|
# The main configuration file.
|
||||||
|
|
||||||
{ pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
@ -16,7 +16,16 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
config.allowUnfree = true;
|
config = {
|
||||||
|
allowUnfree = true;
|
||||||
|
packageOverrides = pkgs: {
|
||||||
|
# Add the unstable channel as a separate package set.
|
||||||
|
unstable = import <nixos-unstable> {
|
||||||
|
# Pass config through so everything is shared between all channels.
|
||||||
|
config = config.nixpkgs.config;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Before changing this value read the documentation for this option!
|
# Before changing this value read the documentation for this option!
|
||||||
|
|
Loading…
Reference in New Issue