nixos-config/config/workarounds/default.nix
2024-10-19 21:46:38 +02:00

12 lines
152 B
Nix

{
self,
system,
...
}: {
nixpkgs.overlays = [
self.overlays.${system}
(self: super: {
utillinux = super.util-linux;
})
];
}