NixOS + home-manager configs, mirrored from GitLab SaaS. gitlab.com/andreijiroh-dev/nixops-config
nix-flake nixos home-manager nixpkgs nix-flakes
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: add zed-editor + patch up termius for missing deps

see https://discourse.nixos.org/t/need-help-with-resolving-missing-dependencies-for-auto-patchelf-on-termius/69722/2?u=ajhalili2006
and https://github.com/NixOS/nixpkgs/pull/438835 for context

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>

+9 -2
+4 -1
shared/desktop/base.nix
··· 22 22 android-tools 23 23 adbtuifm 24 24 25 - #termius 25 + # workaround: https://discourse.nixos.org/t/need-help-with-resolving-missing-dependencies-for-auto-patchelf-on-termius/69722/2?u=ajhalili2006 26 + (pkgs.termius.overrideAttrs (oldAttrs: { 27 + buildInputs = oldAttrs.buildInputs or [ ] ++ [ pkgs.sqlite ]; 28 + })) 26 29 ]; 27 30 }
+5 -1
shared/home-manager/packages.nix
··· 43 43 # imported from my nix profile list to avoid conflicts # 44 44 gpgme 45 45 jq 46 - #termius 46 + # workaround: https://discourse.nixos.org/t/need-help-with-resolving-missing-dependencies-for-auto-patchelf-on-termius/69722/2?u=ajhalili2006 47 + (pkgs.termius.overrideAttrs (oldAttrs: { 48 + buildInputs = oldAttrs.buildInputs or [ ] ++ [ pkgs.sqlite ]; 49 + })) 50 + zed-editor 47 51 48 52 ## programming languages 49 53 # js