mochi/nixos/overlays/default.nix

37 lines
853 B
Nix
Raw Normal View History

{ inputs, ... }:
let
2024-08-21 16:35:13 -05:00
inherit (inputs.nixpkgs) lib;
2024-09-05 14:25:02 -05:00
vivaldiOverlay = self: super: {
vivaldi = super.callPackage ./vivaldi { };
};
2024-09-05 21:11:36 -05:00
termiusOverlay = self: super: {
termius = super.callPackage ./termius { };
};
2024-09-08 17:57:20 -05:00
modsOverlay = self: super: {
mods = super.callPackage ./charm-mods { };
};
2024-09-12 16:25:33 -05:00
smartmontoolsOverlay = import ./smartmontools { };
in
2024-06-20 13:03:44 -05:00
{
comm-packages = inputs.nix-vscode-extensions.overlays.default;
mods = modsOverlay;
2024-06-20 13:03:44 -05:00
nur = inputs.nur.overlay;
smartmontools = smartmontoolsOverlay;
2024-09-05 21:11:36 -05:00
termius = termiusOverlay;
vivaldi = vivaldiOverlay;
2024-06-20 13:03:44 -05:00
# The unstable nixpkgs set (declared in the flake inputs) will
# be accessible through 'pkgs.unstable'
2024-07-03 17:45:35 -05:00
unstable-packages = final: _prev: {
unstable = import inputs.nixpkgs-unstable {
inherit (final) system;
config.allowUnfree = true;
};
};
2024-06-20 13:03:44 -05:00
}