From 010ea7bf9dc13d503532ab560b915efcc812b4f8 Mon Sep 17 00:00:00 2001 From: caem Date: Thu, 30 May 2024 19:47:33 +0200 Subject: [PATCH] Add shell for styling qt in the future Still have to find a good gruvbox theme in Nixpkgs that I could use, or a way to use a them that is not present in Nixpkgs. --- users/hu/packages/qt.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 users/hu/packages/qt.nix diff --git a/users/hu/packages/qt.nix b/users/hu/packages/qt.nix new file mode 100644 index 0000000..a14177c --- /dev/null +++ b/users/hu/packages/qt.nix @@ -0,0 +1,10 @@ +{ pkgs, ... }: + +{ + qt = { + enable = true; + style = { + + }; + }; +}