darkly theme

This commit is contained in:
caandt 2025-03-24 17:49:59 -05:00
parent 1ed30a2cd9
commit f1a6c02c46
3 changed files with 29 additions and 1 deletions

View file

@ -80,6 +80,26 @@
"type": "github" "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": { "nix-gaming": {
"inputs": { "inputs": {
"flake-parts": "flake-parts", "flake-parts": "flake-parts",

View file

@ -28,6 +28,10 @@
url = "github:/pwndbg/pwndbg"; url = "github:/pwndbg/pwndbg";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
lightly = {
url = "github:/Bali10050/Darkly";
inputs.nixpkgs.follows = "nixpkgs";
};
}; };
outputs = { outputs = {

View file

@ -2,13 +2,17 @@
config, config,
lib, lib,
pkgs, pkgs,
inputs,
... ...
}: }:
lib.mkIf config.u.has.graphical { lib.mkIf config.u.has.graphical {
qt = { qt = {
enable = true; enable = true;
platformTheme.name = "kde6"; 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 = { gtk = {
enable = true; enable = true;