Fixed firefox and rofi

This commit is contained in:
Julien Malka 2021-12-20 17:33:08 +01:00
parent 89c429169d
commit 1c6b3c4a33
5 changed files with 172 additions and 115 deletions

View file

@ -1,8 +1,11 @@
{ nixpkgs, home-manager, inputs }:
{ nixpkgs, home-manager, nixpkgs-unstable, inputs }:
with builtins;
let mapAttrNames = f: set:
listToAttrs (map (attr: { name = f attr; value = set.${attr}; }) (attrNames set));
overlay-unstable = final: prev: {
unstable = nixpkgs-unstable.legacyPackages.x86_64-linux;
};
in
{
@ -19,6 +22,7 @@ in
home-manager.useUserPackages = true;
nixpkgs.overlays = [
inputs.neovim-nightly-overlay.overlay
overlay-unstable
(final: prev:
{
mosh = prev.mosh.overrideAttrs (old: {