dotfiles/overlays/default.nix

15 lines
262 B
Nix
Raw Normal View History

2021-09-11 12:27:37 +02:00
{ inputs }:
final: prev: {
picom = prev.picom.overrideAttrs (old: {
src = inputs.picom;
});
2021-09-14 23:34:44 +02:00
unstable = import inputs.unstable {
system = prev.system;
config.allowUnfree = true;
};
2021-09-15 00:41:46 +02:00
nur = import inputs.nur {
system = prev.system;
};
2021-09-11 12:27:37 +02:00
}