aigis: get more things working~

This commit is contained in:
Kate 2024-11-16 22:18:57 -07:00
parent 36bedc698c
commit 9008367ef1
6 changed files with 15 additions and 7 deletions

View file

@ -16,7 +16,10 @@
home.file.".talon/bin/talon" = {
enable = pkgs.stdenv.isLinux;
executable = true;
text = ''
text = if pkgs.stdenv.isAarch64 then
"" # FIXME TODO
else
''
#!${pkgs.bash}/bin/bash
set -ue
base=/home/deprekated/.talon/core

View file

@ -4,7 +4,7 @@
{ pkgs, ... }:
{
programs.steam = {
enable = true;
enable = !pkgs.stdenv.isAarch64;
# Start our steam with appropriate environment vars set.
package = pkgs.steam.override {

View file

@ -90,8 +90,9 @@
services.udev.packages = [
pkgs.minipro
] ++ (if pkgs.stdenv.isAarch64 then [] else [
talon.default
];
]);
services.fwupd.enable = true;

View file

@ -66,7 +66,6 @@ with pkgs;
pavucontrol
deprekages.argos
tidal-hifi
steam
vlc
]
@ -159,6 +158,7 @@ with pkgs;
deprekages.home-assistant-desktop
bitwig-studio
calibre
steam
]
else
[ ]

View file

@ -31,7 +31,7 @@ let
binary-ninja = stdenv.mkDerivation {
pname = "binary-ninja";
version = "4.0.4958";
version = "4.0.5902";
buildInputs = [
autoPatchelfHook
@ -58,7 +58,11 @@ let
# Use our local zip directly.
dontBuild = true;
src = ../proprietary/binja/binaryninja_personal_linux.zip;
src = if stdenv.isAarch64 then
../proprietary/binja/binaryninja_personal_linux_aarch64.zip
else
../proprietary/binja/binaryninja_personal_linux_x64.zip;
installPhase = ''
mkdir -p $out/opt

@ -1 +1 @@
Subproject commit 2320a602b644f6a3f552f8015418fae2712a209b
Subproject commit 6cb772104547058cb310c381f9f50e31d02dd514