From f1a6c02c460bf7a1ee48f2b2be6f97077b84e424 Mon Sep 17 00:00:00 2001 From: caandt Date: Mon, 24 Mar 2025 17:49:59 -0500 Subject: [PATCH] darkly theme --- flake.lock | 20 ++++++++++++++++++++ flake.nix | 4 ++++ user/theme.nix | 6 +++++- 3 files changed, 29 insertions(+), 1 deletion(-) diff --git a/flake.lock b/flake.lock index 5eda631..b24c431 100644 --- a/flake.lock +++ b/flake.lock @@ -80,6 +80,26 @@ "type": "github" } }, + "lightly": { + "inputs": { + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1741543504, + "narHash": "sha256-IwN6eZusfeGIEtdubpJpp1wrzToi0Umwi9jbXc4AF90=", + "owner": "Bali10050", + "repo": "Darkly", + "rev": "40ccf235ae340ace5a55c7740db78f15d1285105", + "type": "github" + }, + "original": { + "owner": "Bali10050", + "repo": "Darkly", + "type": "github" + } + }, "nix-gaming": { "inputs": { "flake-parts": "flake-parts", diff --git a/flake.nix b/flake.nix index c257b05..6533120 100644 --- a/flake.nix +++ b/flake.nix @@ -28,6 +28,10 @@ url = "github:/pwndbg/pwndbg"; inputs.nixpkgs.follows = "nixpkgs"; }; + lightly = { + url = "github:/Bali10050/Darkly"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; outputs = { diff --git a/user/theme.nix b/user/theme.nix index 57e8b36..ff670fb 100644 --- a/user/theme.nix +++ b/user/theme.nix @@ -2,13 +2,17 @@ config, lib, pkgs, + inputs, ... }: lib.mkIf config.u.has.graphical { qt = { enable = true; platformTheme.name = "kde6"; - style.package = pkgs.kdePackages.breeze; + style.package = [ + inputs.lightly.packages.${pkgs.system}.darkly-qt5 + inputs.lightly.packages.${pkgs.system}.darkly-qt6 + ]; }; gtk = { enable = true;