modify firefox config, to use flake packages as extension
This commit is contained in:
parent
2235747c47
commit
ec814431ff
3 changed files with 31 additions and 10 deletions
17
flake.nix
17
flake.nix
|
|
@ -71,6 +71,23 @@
|
|||
in
|
||||
flake-parts.lib.mkFlake { inherit inputs; } {
|
||||
systems = flake-utils.lib.defaultSystems;
|
||||
perSystem = (
|
||||
{ pkgs, system, ... }@args:
|
||||
{
|
||||
_module.args.pkgs = import inputs.nixpkgs {
|
||||
inherit system;
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
};
|
||||
};
|
||||
packages = import ./pkgs (
|
||||
args
|
||||
// {
|
||||
inherit inputs;
|
||||
}
|
||||
);
|
||||
}
|
||||
);
|
||||
flake =
|
||||
{
|
||||
nix.settings = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue