feat: get firefox extensions from nur

This commit is contained in:
Iain Learmonth 2025-06-06 11:09:23 +01:00
parent fb13b01ffd
commit 4bb4ec3db4
3 changed files with 92 additions and 12 deletions

View file

@ -8,16 +8,17 @@
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
# nur = {
# url = "github:nix-community/NUR";
# inputs.nixpkgs.follows = "nixpkgs";
# };
nur = {
url = "github:nix-community/NUR";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{
nixpkgs,
flake-utils,
home-manager,
nur,
...
}:
{
@ -36,11 +37,21 @@
formatter = nixpkgs.legacyPackages.${system}.nixfmt-rfc-style;
packages.homeConfigurations = {
irl = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs { inherit system; };
pkgs = import nixpkgs {
inherit system;
overlays = [
nur.overlay
];
};
modules = [ ./home/irl.nix ];
};
irl-gui = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs { inherit system; };
pkgs = import nixpkgs {
inherit system;
overlays = [
nur.overlay
];
};
modules = [
./home/irl.nix
{