changed my overlay packages to use 'with lib.maintainers [ pagedMov ]' since my name is on the maintainers list now :D also added a -a flag to rebuild to rebuild both home and system configurations

This commit is contained in:
2024-11-15 01:03:07 -05:00
parent 5ba8f79b67
commit 5cd144ef33
3 changed files with 5 additions and 22 deletions

View File

@@ -4,15 +4,6 @@
lib,
}:
let
pagedMov = {
email = "kylerclay@proton.me";
github = "pagedMov";
githubId = 19557376;
name = "Kyler Clay";
keys = [ { fingerprint = "784B 3623 94E7 8F11 0B9D AE0F 56FD CFA6 2A93 B51E"; } ];
};
in
stdenv.mkDerivation {
pname = "tinyfetch";
version = "0.2";
@@ -41,7 +32,7 @@ stdenv.mkDerivation {
homepage = "https://github.com/abrik1/tinyfetch";
license = lib.licenses.mit;
mainProgram = "tinyfetch";
maintainers = [ pagedMov ];
maintainers = with lib.maintainers; [ pagedMov ];
platforms = lib.platforms.unix;
};
}