nixpkgs/overlays/st/default.nix
Daniel Siepmann 4f7b9e6483
Add overlay for st
Configure my own color scheme.
Configure preferred word delimiters.
2022-01-31 12:03:10 +01:00

8 lines
142 B
Nix

self: super: {
st = super.st.overrideAttrs( oldAttributes: {
patches = oldAttributes.patches ++ [
./settings.patch
];
});
}