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