mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 03:33:55 -05:00
hosts: override rbw to 1.12.1
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
This commit is contained in:
parent
5b8e60d78e
commit
15073bac50
|
@ -65,7 +65,7 @@ in {
|
||||||
|
|
||||||
rbw = {
|
rbw = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = unstable.rbw;
|
package = pkgs.rbw;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
email = "alyraffauf@fastmail.com";
|
email = "alyraffauf@fastmail.com";
|
||||||
|
|
|
@ -30,7 +30,7 @@ in {
|
||||||
|
|
||||||
rbw = {
|
rbw = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = unstable.rbw;
|
package = pkgs.rbw;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
email = "dustinmraffauf@gmail.com";
|
email = "dustinmraffauf@gmail.com";
|
||||||
|
|
|
@ -26,6 +26,25 @@
|
||||||
|
|
||||||
overlays = [
|
overlays = [
|
||||||
(final: prev: {
|
(final: prev: {
|
||||||
|
rbw = prev.rbw.override (super: {
|
||||||
|
rustPlatform =
|
||||||
|
super.rustPlatform
|
||||||
|
// {
|
||||||
|
buildRustPackage = args:
|
||||||
|
super.rustPlatform.buildRustPackage (args
|
||||||
|
// {
|
||||||
|
version = "1.12.1";
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "doy";
|
||||||
|
repo = "rbw";
|
||||||
|
rev = "1.12.1";
|
||||||
|
hash = "sha256-+1kalFyhk2UL+iVzuFLDsSSTudrd4QpXw+3O4J+KsLc=";
|
||||||
|
};
|
||||||
|
cargoHash = "sha256-cKbbsDb449WANGT+x8APhzs+hf5SR3RBsCBWDNceRMA=";
|
||||||
|
});
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
rofi-bluetooth =
|
rofi-bluetooth =
|
||||||
prev.rofi-bluetooth.overrideAttrs
|
prev.rofi-bluetooth.overrideAttrs
|
||||||
(old: {
|
(old: {
|
||||||
|
|
Loading…
Reference in a new issue