nixos-config/config/workarounds/default.nix

13 lines
152 B
Nix
Raw Normal View History

2022-07-29 07:32:43 +00:00
{
2022-12-18 12:15:23 +00:00
self,
2022-07-29 07:32:43 +00:00
system,
...
2022-12-18 12:15:23 +00:00
}: {
2022-01-27 16:16:42 +00:00
nixpkgs.overlays = [
2022-12-18 12:15:23 +00:00
self.overlays.${system}
2024-10-19 19:46:38 +00:00
(self: super: {
utillinux = super.util-linux;
})
2022-01-27 16:16:42 +00:00
];
}