1
0
mirror of https://github.com/Andrey0189/nixos-config-reborn.git synced 2025-09-15 10:06:00 +03:00

wrong qt configuration

This commit is contained in:
andrey_varnavskiy
2024-12-15 06:31:35 +05:00
parent 9b667bab5a
commit 4d3caa9bc9
3 changed files with 16 additions and 17 deletions

View File

@@ -9,7 +9,9 @@
./lazygit.nix
./neovim.nix
./obsidian.nix
./qt.nix
./starship.nix
# ./stylix.nix
./swaync
./tmux.nix
./waybar

View File

@@ -0,0 +1,14 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
papirus-icon-theme
pcmanfm-qt
];
qt = {
enable = true;
platformTheme.name = "gtk";
style = {
package = pkgs.adwaita-qt;
name = "adwaita-dark";
};
};
}

View File

@@ -1,17 +0,0 @@
{ pkgs, ... }: {
environment.variables.QT_QPA_PLATFORMTHEME = "qt5ct";
environment.systemPackages = with pkgs;
[
libsForQt5.qtstyleplugin-kvantum
libsForQt5.qt5ct
];
nixpkgs.config.qt5 = {
enable = true;
platformTheme = "qt5ct";
style = {
package = pkgs.utterly-nord-plasma;
name = "Utterly Nord Plasma";
};
};
}