From 33915d7a783c62c1e2827ff10274d48b17d454e2 Mon Sep 17 00:00:00 2001 From: uku Date: Tue, 5 Nov 2024 12:29:41 +0100 Subject: [PATCH 1/2] flake.lock: Update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flake lock file updates: • Updated input 'camasca': 'github:uku3lig/camasca/ac2d57b85cb9e8e54f2a43753e2032d6ce80ccc3?narHash=sha256-oumO7WOhClK6/KYpG7NOW6giusECzF4diIzlDK1zpYA%3D' (2024-10-14) → 'github:uku3lig/camasca/6aa35b55922d0c5033ae0fb723af12cefd4ce216?narHash=sha256-Nbil3AKMam6iXRsAA2GDq/aYuUKBl6NIY9JUpeV1QDI%3D' (2024-11-05) • Removed input 'camasca/flake-parts' --- flake.lock | 9 +++------ flake.nix | 1 - 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/flake.lock b/flake.lock index 70d7030..341f652 100644 --- a/flake.lock +++ b/flake.lock @@ -52,19 +52,16 @@ }, "camasca": { "inputs": { - "flake-parts": [ - "flake-parts" - ], "nixpkgs": [ "nixpkgs" ] }, "locked": { - "lastModified": 1728905971, - "narHash": "sha256-oumO7WOhClK6/KYpG7NOW6giusECzF4diIzlDK1zpYA=", + "lastModified": 1730806150, + "narHash": "sha256-Nbil3AKMam6iXRsAA2GDq/aYuUKBl6NIY9JUpeV1QDI=", "owner": "uku3lig", "repo": "camasca", - "rev": "ac2d57b85cb9e8e54f2a43753e2032d6ce80ccc3", + "rev": "6aa35b55922d0c5033ae0fb723af12cefd4ce216", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index 207e58e..29e5a72 100644 --- a/flake.nix +++ b/flake.nix @@ -41,7 +41,6 @@ camasca = { url = "github:uku3lig/camasca"; inputs.nixpkgs.follows = "nixpkgs"; - inputs.flake-parts.follows = "flake-parts"; }; agenix = { From eecae9ff6514d7cbe0ab135ade8fc2836c2aae14 Mon Sep 17 00:00:00 2001 From: uku Date: Tue, 5 Nov 2024 12:31:02 +0100 Subject: [PATCH 2/2] feat(mottarone): add openwebstart --- systems/mottarone/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/systems/mottarone/default.nix b/systems/mottarone/default.nix index f53dd44..76b83f8 100644 --- a/systems/mottarone/default.nix +++ b/systems/mottarone/default.nix @@ -1,13 +1,17 @@ { lib, pkgs, + camasca, ... -}: { +}: let + inherit (pkgs.stdenv.hostPlatform) system; +in { environment.systemPackages = with pkgs; [ gtkterm maven svn2git remmina + camasca.packages.${system}.openwebstart ]; i18n.defaultLocale = lib.mkForce "fr_FR.UTF-8";