adding tuigreet, lots of small changes all over

This commit is contained in:
Matt Nish-Lapidus 2025-02-21 16:46:10 -05:00
parent 01f0129c2f
commit d9be121700
6 changed files with 78 additions and 9 deletions

View file

@ -0,0 +1,19 @@
self: super: {
tuigreet = super.greetd.tuigreet.overrideAttrs (final: old: {
version = "master";
src = self.fetchFromGitHub {
owner = "apognu";
repo = "tuigreet";
rev = "master";
hash = "sha256-6hVTU575tP+bPAUZlGhDwvBTVISyORC0wqljC7guZdA=";
};
cargoHash = "sha256-FrWDRsYhfq46wBm7F0Tifiw5oGXzSgwZC05ndNXcg8k=";
cargoDeps = super.pkgs.rustPlatform.fetchCargoVendor {
inherit (final) pname src version;
hash = final.cargoHash;
};
});
}