From 34272ed0e76c1064f8848a113c7df244f91434de Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Mon, 1 Sep 2025 09:35:17 -0700 Subject: [PATCH] Trying per-machine packages. --- hw/orion/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/hw/orion/default.nix b/hw/orion/default.nix index 6d33f24..d91794f 100644 --- a/hw/orion/default.nix +++ b/hw/orion/default.nix @@ -1,8 +1,11 @@ -{ inputs, ... }: - +{ inputs, pkgs, ... }: { imports = [ ./hardware-configuration.nix ../../configs/desktop.nix ]; + + environment.systemPackages = with pks; [ + signal-desktop + ]; }