added qt theme

This commit is contained in:
willifan 2024-05-18 20:28:02 +02:00
parent 154efe692b
commit 88f77919ee
3 changed files with 27 additions and 1 deletions

View file

@ -1,5 +1,8 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
services.udisks2.enable = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
#rustup #rustup

View file

@ -4,6 +4,6 @@
imports = [ imports = [
./font.nix ./font.nix
./gtk.nix ./gtk.nix
#./qt.nix ./qt.nix
]; ];
} }

View file

@ -0,0 +1,23 @@
{ pkgs, home-manager, ... }:
{
environment.systemPackages = with pkgs; [
qalculate-qt
];
home-manager.users.willifan = {
qt = {
enable = true;
style = {
name = "gtk2";
package = pkgs.libsForQt5.qtstyleplugins;
};
platformTheme.name = "gtk";
};
};
#qt = {
# enable = true;
# platformTheme = "gtk2";
# style = "gtk2";
# };
}