From f55dfa12628bb2114c33719fb99777cf35bd6352 Mon Sep 17 00:00:00 2001 From: GarandPLG Date: Sun, 28 Jun 2026 18:45:35 +0200 Subject: [PATCH] Update helium to 0.13.5.1 and add nixpkgs aliases Helium AppImage version bump includes new SHA256 hash. New Bash and Fish aliases `upf-pkgs` and `upf-pkgs-gh` are added to simplify updating the nixpkgs input, mirroring existing flake update commands. --- modules/core/packages/appimages/helium.nix | 4 ++-- modules/home/bash/aliases.nix | 2 ++ modules/home/fish/aliases.nix | 2 ++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/modules/core/packages/appimages/helium.nix b/modules/core/packages/appimages/helium.nix index 15a4afc..7088044 100644 --- a/modules/core/packages/appimages/helium.nix +++ b/modules/core/packages/appimages/helium.nix @@ -4,8 +4,8 @@ fetchurl, }: let pname = "helium"; - version = "0.13.4.1"; - hash = "sha256-z23up+T6bj6F+cQslmI92bEksIAw1OQHRIrmQSaaxY8="; + version = "0.13.5.1"; + hash = "sha256-VAncL78nyXRRNUPZ2c0QudxFrfxy7tXE2NFN4teeezk="; src = fetchurl { url = "https://github.com/imputnet/helium-linux/releases/download/${version}/helium-${version}-x86_64.AppImage"; diff --git a/modules/home/bash/aliases.nix b/modules/home/bash/aliases.nix index b399358..34963fa 100644 --- a/modules/home/bash/aliases.nix +++ b/modules/home/bash/aliases.nix @@ -10,6 +10,8 @@ upg = "nh os switch -H ${host} --update -d always"; upf = "sudo nix flake update --flake /home/${username}/garandos"; upf-gh = "nix flake update --option access-tokens \"github.com=$(gh auth token)\" --flake /home/${username}/garandos"; + upf-pkgs = "sudo nix flake update --flake /home/${username}/garandos nixpkgs"; + upf-pkgs-gh = "nix flake update --option access-tokens \"github.com=$(gh auth token)\" --flake /home/${username}/garandos nixpkgs"; upf-undo = "git -C /home/${username}/garandos restore /home/${username}/garandos/flake.lock"; upd-bt = "nh os boot -H ${host} -d always"; upd-ts = "nh os test -H ${host} -d always"; diff --git a/modules/home/fish/aliases.nix b/modules/home/fish/aliases.nix index b19d1c9..230b138 100644 --- a/modules/home/fish/aliases.nix +++ b/modules/home/fish/aliases.nix @@ -10,6 +10,8 @@ upg = "nh os switch -H ${host} --update -d always"; upf = "sudo nix flake update --flake /home/${username}/garandos"; upf-gh = "nix flake update --option access-tokens \"github.com=$(gh auth token)\" --flake /home/${username}/garandos"; + upf-pkgs = "sudo nix flake update --flake /home/${username}/garandos nixpkgs"; + upf-pkgs-gh = "nix flake update --option access-tokens \"github.com=$(gh auth token)\" --flake /home/${username}/garandos nixpkgs"; upf-undo = "git -C /home/${username}/garandos restore /home/${username}/garandos/flake.lock"; upd-bt = "nh os boot -H ${host} -d always"; upd-ts = "nh os test -H ${host} -d always";