forked from mirror/dwl
flake overlay
This commit is contained in:
parent
7e2bbdbfaf
commit
e801bcbdb6
1 changed files with 6 additions and 0 deletions
|
@ -8,8 +8,14 @@
|
||||||
|
|
||||||
outputs = inputs@{ flake-parts, nixpkgs, ... }:
|
outputs = inputs@{ flake-parts, nixpkgs, ... }:
|
||||||
flake-parts.lib.mkFlake { inherit inputs; } {
|
flake-parts.lib.mkFlake { inherit inputs; } {
|
||||||
|
imports = [
|
||||||
|
flake-parts.flakeModules.easyOverlay
|
||||||
|
];
|
||||||
systems = nixpkgs.lib.platforms.unix;
|
systems = nixpkgs.lib.platforms.unix;
|
||||||
perSystem = { config, self', inputs', pkgs, system, ... }: {
|
perSystem = { config, self', inputs', pkgs, system, ... }: {
|
||||||
|
overlayAttrs = {
|
||||||
|
zdwl = config.packages.default;
|
||||||
|
};
|
||||||
packages.default = (old: pkgs.dwl.overrideAttrs {
|
packages.default = (old: pkgs.dwl.overrideAttrs {
|
||||||
buildInputs = old.buildInputs ++ pkgs.fcft;
|
buildInputs = old.buildInputs ++ pkgs.fcft;
|
||||||
src = ./.;
|
src = ./.;
|
||||||
|
|
Loading…
Reference in a new issue