feat: get firefox extensions from nur
This commit is contained in:
parent
fb13b01ffd
commit
4bb4ec3db4
3 changed files with 92 additions and 12 deletions
23
flake.nix
23
flake.nix
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue