dotfiles/overlays/default.nix

25 lines
639 B
Nix
Raw Normal View History

2024-08-02 11:12:36 +02:00
{ inputs, ... }:
{
additions = final: _prev: import ../pkgs final.pkgs;
modifications = final: prev: {
# https://discourse.nixos.org/t/disable-ssh-agent-from-gnome-keyring-on-gnome/28176/5
gnome-keyring = prev.gnome-keyring.overrideAttrs (oldAttrs: {
configureFlags = oldAttrs.configureFlags or [ ] ++ [ "--disable-ssh-agent" ];
});
};
unstable-packages = final: _prev: {
2024-10-18 10:57:46 +02:00
stable = import inputs.nixpkgs-stable {
system = final.system;
config.allowUnfree = true;
};
2024-08-02 11:12:36 +02:00
unstable = import inputs.nixpkgs-unstable {
system = final.system;
config.allowUnfree = true;
};
};
}