Files
nixos-config/overlays/default.nix

64 lines
1.7 KiB
Nix
Raw Normal View History

2024-10-20 00:30:58 +02:00
{inputs, ...}: {
# This one brings our custom packages from the 'pkgs' directory
# additions = final: prev:
# (import ../pkgs {pkgs = final;})
# // {rose-pine-hyprcursor = inputs.rose-pine-hyprcursor.packages.${prev.system}.default;};
2025-09-29 18:58:19 +02:00
2024-10-20 00:30:58 +02:00
# This one contains whatever you want to overlay
# You can change versions, add patches, set compilation flags, anything really.
# https://nixos.wiki/wiki/Overlays
2025-03-28 10:00:43 +01:00
# modifications = final: prev: {
# n8n = import ./mods/n8n.nix {inherit prev;};
# brave = prev.brave.override {
# commandLineArgs = "--password-store=gnome-libsecret";
# };
# hyprpanel = inputs.hyprpanel.packages.${prev.system}.default.overrideAttrs (prev: {
# version = "latest"; # or whatever version you want
# src = final.fetchFromGitHub {
# owner = "Jas-SinghFSU";
# repo = "HyprPanel";
# rev = "master"; # or a specific commit hash
# hash = "sha256-l623fIVhVCU/ylbBmohAtQNbK0YrWlEny0sC/vBJ+dU=";
# };
# });
# };
2024-10-20 00:30:58 +02:00
2025-05-06 14:41:27 +02:00
temp-packages = final: _prev: {
temp = import inputs.nixpkgs-9e9486b {
system = final.system;
config.allowUnfree = true;
};
};
2024-10-20 00:30:58 +02:00
stable-packages = final: _prev: {
stable = import inputs.nixpkgs-stable {
system = final.system;
config.allowUnfree = true;
};
};
2024-11-07 10:50:13 +01:00
pinned-packages = final: _prev: {
2025-05-19 14:39:49 +02:00
pinned = import inputs.nixpkgs-9472de4 {
2024-11-07 10:50:13 +01:00
system = final.system;
config.allowUnfree = true;
};
};
2025-03-28 10:00:43 +01:00
locked-packages = final: _prev: {
locked = import inputs.nixpkgs-locked {
system = final.system;
config.allowUnfree = true;
};
};
2024-11-07 10:50:13 +01:00
master-packages = final: _prev: {
master = import inputs.nixpkgs-master {
system = final.system;
config.allowUnfree = true;
};
};
2024-10-20 00:30:58 +02:00
}