feat(browsers): add firefox

- add nur
- set firefox as main browser
- move browsers into separate modules
This commit is contained in:
Felix Schröter 2020-08-14 23:41:20 +02:00
parent ed8e9f5914
commit f3fb292dd1
No known key found for this signature in database
GPG key ID: 910ACB9F6BD26F58
11 changed files with 96 additions and 40 deletions

View file

@ -5,6 +5,7 @@
./hardened.nix
./i18n.nix
./nix.nix
./nur.nix
./vpn.nix
];

9
system/nur.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
nixpkgs.config.packageOverrides = pkgs: {
nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") {
inherit pkgs;
};
};
}