mochi/nixos/overlays/default.nix

41 lines
1.4 KiB
Nix
Raw Normal View History

2025-01-31 19:17:58 -06:00
{inputs, ...}: let
# smartmontoolsOverlay = import ./smartmontools { };
# vivaldiOverlay = self: super: { vivaldi = super.callPackage ./vivaldi { }; };
2025-01-31 19:17:58 -06:00
coderOverlay = self: super: {coder = super.callPackage ./coder {};};
modsOverlay = self: super: {mods = super.callPackage ./charm-mods {};};
termiusOverlay = self: super: {termius = super.callPackage ./termius {};};
in {
# smartmontools = smartmontoolsOverlay;
# vivaldi = vivaldiOverlay;
coder = coderOverlay;
comm-packages = inputs.nix-vscode-extensions.overlays.default;
mods = modsOverlay;
nix-minecraft = inputs.nix-minecraft.overlay;
2024-12-09 22:59:27 -06:00
nur = inputs.nur.overlays.default;
2024-09-05 21:11:36 -05:00
termius = termiusOverlay;
2024-06-20 13:03:44 -05:00
# The unstable nixpkgs set (declared in the flake inputs) will
# be accessible through 'pkgs.unstable'
unstable-packages = final: prev: {
2024-12-27 21:30:25 -06:00
unstable =
import inputs.nixpkgs-unstable {
inherit (final) system;
config.allowUnfree = true;
2024-12-27 21:30:25 -06:00
}
// {
# Add talosctl to the unstable set
talosctl = final.unstable.callPackage ./talosctl {
2025-01-31 19:17:58 -06:00
inherit
(final.unstable)
2024-12-27 21:30:25 -06:00
lib
buildGoModule
fetchFromGitHub
installShellFiles
;
};
2025-01-31 19:17:58 -06:00
xpipe = final.unstable.callPackage ./xpipe/ptb.nix {};
prowlarr = final.unstable.callPackage ./arr/prowlarr.nix {};
};
2024-07-03 17:45:35 -05:00
};
2024-06-20 13:03:44 -05:00
}