Initial commit
This commit is contained in:
commit
cfcc57a8bd
353 changed files with 18756 additions and 0 deletions
24
module/aspect/desktop/desktop-theme.nix
Normal file
24
module/aspect/desktop/desktop-theme.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
den.aspects = {
|
||||
desktop = {
|
||||
nixos =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = [
|
||||
pkgs.xorg.xcursorthemes
|
||||
# ----- gtk theme
|
||||
pkgs.fluent-gtk-theme
|
||||
pkgs.fluent-icon-theme
|
||||
# ----- qt6 theme
|
||||
pkgs.kdePackages.qt6ct
|
||||
pkgs.adwaita-qt6
|
||||
pkgs.darkly
|
||||
];
|
||||
environment.variables = {
|
||||
QT_QPA_PLATFORMTHEME = "qt6ct";
|
||||
GTK_USE_PORTAL = "1";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue