Reorganize overlays

This commit is contained in:
Charlotte Van Petegem 2020-07-09 17:04:37 +02:00
parent c58418bdee
commit e4d783c045
10 changed files with 46 additions and 46 deletions

View file

@ -3,6 +3,14 @@
home.packages = with pkgs; [ firefox ];
};
nixpkgs.overlays = [
(self: super: {
firefox = super.firefox.override { extraNativeMessagingHosts = [ self.passff-host ]; pkcs11Modules = [ self.eid-mw ]; };
# Avoids a double firefox install, see https://github.com/NixOS/nixpkgs/pull/31772
firefox-bin = self.firefox;
})
];
custom.zfs.homeLinks = [
{ path = ".cache/mozilla"; type = "cache"; }
{ path = ".mozilla"; type = "data"; }