From 89a37a913f34b35eda75e77fb5d5c061dee7e966 Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Sun, 30 Nov 2025 15:54:03 -0800 Subject: [PATCH] splitting out vrs stuff nothing is using this right, not sure if vrs is buildable right now --- configs/pkgs.nix | 8 -------- configs/vrs.nix | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 8 deletions(-) create mode 100644 configs/vrs.nix diff --git a/configs/pkgs.nix b/configs/pkgs.nix index f7ac8d5..e9e680e 100644 --- a/configs/pkgs.nix +++ b/configs/pkgs.nix @@ -78,14 +78,6 @@ uv wget woff2 - - # vrs - libsoup_2_4 # vrs - at-spi2-atk - atkmm - cairo - pango - pangomm ]; programs.nh = { diff --git a/configs/vrs.nix b/configs/vrs.nix new file mode 100644 index 0000000..f631428 --- /dev/null +++ b/configs/vrs.nix @@ -0,0 +1,15 @@ +# vrs packages +# https://github.com/leoshimo/vrs + +{ pkgs, ... }: +{ + environment.systemPackages = with pkgs; [ + # vrs - never + libsoup_2_4 # vrs + at-spi2-atk + atkmm + cairo + pango + pangomm + ]; +}