0
0
Fork 0
flake/system/linux.nix

13 lines
252 B
Nix
Raw Normal View History

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