0
0
Fork 0
flake/system/linux.nix

12 lines
252 B
Nix

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