dotfiles/config.nix

21 lines
601 B
Nix
Raw Normal View History

2020-04-16 16:14:33 +02:00
let
unstable = import <nixos-unstable> { };
stable = import <nixos> {};
in
2019-10-31 23:35:21 +01:00
{
allowUnfree = true;
2019-11-02 12:04:54 +01:00
2019-10-31 23:35:21 +01:00
packageOverrides = pkgs: {
2019-11-02 12:04:54 +01:00
unstable = unstable;
2019-10-31 23:35:21 +01:00
nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") {
2019-11-02 12:04:54 +01:00
pkgs = unstable;
2019-10-31 23:35:21 +01:00
};
dan = import (builtins.fetchTarball "https://git.dodsorf.as/Dandellion/NUR/-/archive/master/NUR-master.tar.gz") {
2019-11-02 12:04:54 +01:00
pkgs = unstable;
2019-10-31 23:35:21 +01:00
};
2020-04-16 16:14:33 +02:00
danstable = import (builtins.fetchTarball "https://git.dodsorf.as/Dandellion/NUR/-/archive/master/NUR-master.tar.gz") {
pkgs = stable;
};
2019-10-31 23:35:21 +01:00
};
}