13 lines
252 B
Nix
13 lines
252 B
Nix
|
{pkgs, ...}: {
|
||
|
system.replaceDependencies = {
|
||
|
replacements = [
|
||
|
{
|
||
|
oldDependency = pkgs.gtk4;
|
||
|
newDependency = pkgs.callPackage ../pkgs/libraries/gtk4.nix {};
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
|
||
|
programs.command-not-found.enable = false;
|
||
|
}
|