halloy update overlay

This commit is contained in:
death916 2025-05-14 02:33:15 -07:00
parent 2ff40ac853
commit c2bd6c2722
3 changed files with 27 additions and 0 deletions

View file

@ -8,6 +8,7 @@
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
../overlays/halloy-verlay.nix
];
# Use the systemd-boot EFI boot loader.

View file

@ -0,0 +1,13 @@
self: super: {
halloy = super.halloy.overrideAttrs (oldAttrs: rec {
version = "2025.5";
src = super.fetchFromGitHub {
owner = "squidowl";
repo = "halloy";
rev = "2025.5";
sha256 = "0000000000000000000000000000000000000000000000000000"; # <--- Replace after first build
};
# If the build fails due to Cargo.lock, you may also need to override cargoSha256:
# cargoSha256 = "0000000000000000000000000000000000000000000000000000"; # Replace if needed
});
}

View file

@ -0,0 +1,13 @@
self: super: {
halloy = super.halloy.overrideAttrs (oldAttrs: rec {
version = "2025.5";
src = super.fetchFromGitHub {
owner = "squidowl";
repo = "halloy";
rev = "2025.5";
sha256 = "0000000000000000000000000000000000000000000000000000"; # <--- Replace after first build
};
# If the build fails due to Cargo.lock, you may also need to override cargoSha256:
# cargoSha256 = "0000000000000000000000000000000000000000000000000000"; # Replace if needed
});
}