From 3b3c10a550b94a2d0a8176fae0adb92d57162d71 Mon Sep 17 00:00:00 2001 From: uku Date: Thu, 5 Jun 2025 12:33:09 +0200 Subject: [PATCH] chore(systems): add camascaPkgs --- systems/default.nix | 2 ++ systems/mottarone/default.nix | 11 ++++------- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/systems/default.nix b/systems/default.nix index 18937a3..b073f90 100644 --- a/systems/default.nix +++ b/systems/default.nix @@ -28,6 +28,8 @@ let inherit lib; pkgs = inputs.nixpkgs.legacyPackages.${system}; }; + + camascaPkgs = inputs.camasca.packages.${system}; }; }; in diff --git a/systems/mottarone/default.nix b/systems/mottarone/default.nix index 6fed6aa..8201cdf 100644 --- a/systems/mottarone/default.nix +++ b/systems/mottarone/default.nix @@ -1,12 +1,9 @@ { lib, pkgs, - camasca, + camascaPkgs, ... }: -let - inherit (pkgs.stdenv.hostPlatform) system; -in { imports = [ ./urbackup.nix @@ -15,9 +12,9 @@ in environment.systemPackages = with pkgs; [ gtkterm remmina - camasca.packages.${system}.openwebstart - camasca.packages.${system}.jaspersoft-studio-community - camasca.packages.${system}.sql-developer + camascaPkgs.openwebstart + camascaPkgs.jaspersoft-studio-community + camascaPkgs.sql-developer pycharm-wrapped recaf-launcher ];