[nix] Redo and restructure the entire config

Thanks @KaitlynEthylia :)
This commit is contained in:
Alyxia Sother 2024-07-11 19:07:47 +02:00
parent 19b92cd8fd
commit 2daf5f1b05
No known key found for this signature in database
GPG key ID: 01E16C4E775A37E4
13 changed files with 378 additions and 302 deletions

8
nix/overlays/lix.nix Normal file
View file

@ -0,0 +1,8 @@
(final: prev: {
lix = prev.lix.overrideAttrs (oldAttrs: {
postPatch = (oldAttrs.postPatch or "") + ''
substituteInPlace src/libmain/shared.cc \
--replace-fail "(Lix, like Nix)" "but for lesbians"
'';
});
})