Update dist-nix

- Not use NixGL but let home-manager automatically handle it (since hm 25.11)
- Add libqalculate
This commit is contained in:
clsty
2025-11-28 22:42:47 +08:00
parent 04f73e67c8
commit b4038dafa9
5 changed files with 67 additions and 20 deletions
+7 -3
View File
@@ -1,10 +1,14 @@
{ pkgs, quickshell, nixGLWrap, ... }:
{ pkgs, quickshell,
#nixGLWrap,
... }:
let
qs = nixGLWrap quickshell.packages.x86_64-linux.default;
#qs = nixGLWrap quickshell.packages.x86_64-linux.default;
qs = quickshell.packages.x86_64-linux.default;
in pkgs.stdenv.mkDerivation {
name = "illogical-impulse-quickshell-wrapper";
meta = with pkgs.lib; {
description = "Quickshell wrapped with NixGL + bundled Qt deps for home-manager usage";
#description = "Quickshell wrapped with NixGL + bundled Qt deps for home-manager usage";
description = "Quickshell bundled Qt deps for home-manager usage";
license = licenses.gpl3Only;
};