added qt theme
This commit is contained in:
parent
154efe692b
commit
88f77919ee
3 changed files with 27 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
|
|
||||||
|
services.udisks2.enable = true;
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
|
||||||
#rustup
|
#rustup
|
||||||
|
|
|
@ -4,6 +4,6 @@
|
||||||
imports = [
|
imports = [
|
||||||
./font.nix
|
./font.nix
|
||||||
./gtk.nix
|
./gtk.nix
|
||||||
#./qt.nix
|
./qt.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
|
@ -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";
|
||||||
|
# };
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue