Compare commits

..

No commits in common. "9008367ef146a64e674807594a879ee18525f097" and "e70ce4df5dcb8a97773445277012ec72bc888f4a" have entirely different histories.

8 changed files with 9 additions and 21 deletions

View file

@ -371,11 +371,7 @@
system = "aarch64-linux"; system = "aarch64-linux";
specialArgs = mkSpecialArgs system; specialArgs = mkSpecialArgs system;
modules = linuxGuiModules [ modules = linuxGuiModules [ ./nixos/hosts/aigis.nix ];
./nixos/hosts/aigis.nix
./nixos/configs/power-saving.nix
];
}; };
# Nomon (TMLLC aarch64-linux, broadcom-silicon, test machine). # Nomon (TMLLC aarch64-linux, broadcom-silicon, test machine).

View file

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

View file

@ -6,7 +6,7 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
# Keep our thermals nice and happy. # Keep our thermals nice and happy.
services.thermald.enable = !pkgs.stdenv.isAarch64; services.thermald.enable = true;
# Set up a power saving policy manager. # Set up a power saving policy manager.
services.tlp = { services.tlp = {

View file

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

View file

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

View file

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

View file

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

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