- add nur - set firefox as main browser - move browsers into separate modules
10 lines
208 B
Nix
10 lines
208 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
nixpkgs.config.packageOverrides = pkgs: {
|
|
nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") {
|
|
inherit pkgs;
|
|
};
|
|
};
|
|
}
|