darkly theme
This commit is contained in:
parent
1ed30a2cd9
commit
f1a6c02c46
20
flake.lock
20
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",
|
||||
|
|
|
|||
|
|
@ -28,6 +28,10 @@
|
|||
url = "github:/pwndbg/pwndbg";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
lightly = {
|
||||
url = "github:/Bali10050/Darkly";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = {
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue