mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 16:58:34 -05:00
17 lines
330 B
Nix
17 lines
330 B
Nix
{inputs, ...}: {
|
|
additions = final: _prev: import ../pkgs final.pkgs;
|
|
|
|
modifications = final: prev: {
|
|
mods = {
|
|
};
|
|
};
|
|
|
|
unstable-packages = final: prev: {
|
|
unstable = import inputs.nixpkgs-unstable {
|
|
system = final.system;
|
|
config.allowUnfree = true;
|
|
};
|
|
};
|
|
|
|
niri = inputs.niri.overlays.niri;
|
|
}
|