mochi/nixos/overlays/default.nix
Joseph Hanson f4e15b7e90
Some checks failed
Build / nix-build (native-x86_64, gandalf) (push) Failing after 21s
Build / nix-build (native-x86_64, telperion) (push) Successful in 4m50s
Build / nix-build (native-x86_64, shadowfax) (push) Failing after 29m41s
update soft-serve and disable stats server
vscode --> master. update extensions.
2025-03-06 09:44:07 -06:00

49 lines
1.6 KiB
Nix

{inputs, ...}: let
# smartmontoolsOverlay = import ./smartmontools { };
# vivaldiOverlay = self: super: { vivaldi = super.callPackage ./vivaldi { }; };
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;
nur = inputs.nur.overlays.default;
termius = termiusOverlay;
# The unstable nixpkgs set (declared in the flake inputs) will
# be accessible through 'pkgs.unstable'
unstable-packages = final: prev: {
unstable =
import inputs.nixpkgs-unstable {
inherit (final) system;
config.allowUnfree = true;
}
// {
# Add talosctl to the unstable set
talosctl = final.unstable.callPackage ./talosctl {
inherit
(final.unstable)
lib
buildGoModule
fetchFromGitHub
installShellFiles
;
};
xpipe = final.unstable.callPackage ./xpipe/ptb.nix {};
prowlarr = final.unstable.callPackage ./arr/prowlarr.nix {};
radarr = final.unstable.callPackage ./arr/radarr.nix {};
sonarr = final.unstable.callPackage ./arr/sonarr.nix {};
};
};
master-packages = final: prev: {
master = import inputs.nixpkgs-master {
inherit (final) system;
config.allowUnfree = true;
};
};
}