nixos/overlays/modifications/default.nix
ulic-youthlic 6a7b5838bc
Some checks are pending
Test Cachix / tests (Akun) (push) Waiting to run
Test Cachix / tests (Cape) (push) Waiting to run
Test Cachix / tests (Tytonidae) (push) Waiting to run
fix: Remove |> operator to fix ci
2025-11-08 00:12:48 +08:00

28 lines
435 B
Nix

{ ... }@args:
final: prev:
let
inherit (prev) lib;
in
with lib;
pipe
[
./niri.nix
./spotifyx.nix
./radicle-explorer.nix
./wshowkeys.nix
# ./QQ.nix
./helix.nix
./cliphist.nix
./zulip.nix
./spotifyd.nix
./nautilus.nix
./neovim-nightly.nix
./vim.nix
# Nur
./nur.nix
]
[
(map (file: import file args))
(overlays: (lib.composeManyExtensions overlays) final prev)
]