dotfiles/config.nix

20 lines
334 B
Nix
Raw Normal View History

2020-04-16 16:14:33 +02:00
let
2022-10-04 01:57:51 +02:00
unstable = import <nixos-unstable> { };
stable = import <nixpkgs> {};
2020-05-12 13:30:16 +02:00
nur = import <nur> { pkgs = unstable; };
2020-04-16 16:14:33 +02:00
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;
2020-05-12 13:30:16 +02:00
nur = nur;
dan = import <dan> {
2019-11-02 12:04:54 +01:00
pkgs = unstable;
2019-10-31 23:35:21 +01:00
};
2020-05-12 13:30:16 +02:00
danstable = <dan> {
2020-04-16 16:14:33 +02:00
pkgs = stable;
};
2019-10-31 23:35:21 +01:00
};
}