From 8d9cd003347e06c2797199000d8c21eb90091394 Mon Sep 17 00:00:00 2001 From: mjallen18 Date: Sun, 18 May 2025 19:37:59 -0500 Subject: [PATCH] argononed --- hosts/pi4/configuration.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/hosts/pi4/configuration.nix b/hosts/pi4/configuration.nix index f5c8e2d..6e63a4a 100755 --- a/hosts/pi4/configuration.nix +++ b/hosts/pi4/configuration.nix @@ -18,6 +18,11 @@ in ]; programs.zsh.enable = true; + services.hardware.argonone = { + enable = true; + package = pkgs.argononed; + }; + systemd.services.btattach = { before = [ "bluetooth.service" ]; after = [ "dev-ttyAMA0.device" ]; @@ -28,6 +33,7 @@ in }; environment.systemPackages = with pkgs; [ + argononed git libraspberrypi raspberrypi-eeprom @@ -45,6 +51,7 @@ in extraGroups = [ "wheel" "docker" + "video" ]; shell = pkgs.zsh; };