Move firefox (with addons) into Nix home manager flake

This commit is contained in:
2025-10-26 20:18:53 +01:00
parent c0ed57ae6a
commit cb5d18370f
5 changed files with 175 additions and 31 deletions

View File

@@ -6,8 +6,12 @@
inputs.nixpkgs.follows = "nixpkgs";
};
nixgl.url = "github:nix-community/nixGL";
firefox-addons = {
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { nixpkgs, home-manager, nixgl, ... }:
outputs = { nixpkgs, home-manager, nixgl, ... }@inputs:
let
lib = nixpkgs.lib;
system = "x86_64-linux";
@@ -21,7 +25,7 @@
work = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
extraSpecialArgs = {
inherit nixgl;
inherit inputs;
};
modules = [ ./hosts/work ];
};