Change QT theme location

This commit is contained in:
Tyler Kelley 2024-01-16 14:07:33 -06:00
parent bc3837135a
commit fe9e25edd1
2 changed files with 12 additions and 9 deletions

View File

@ -54,14 +54,14 @@
# Install Packages For The User # Install Packages For The User
home.packages = with pkgs; [ home.packages = with pkgs; [
neofetch lolcat cmatrix discord firefox btop libvirt neofetch lolcat cmatrix discord firefox htop btop libvirt
swww polkit_gnome grim slurp lm_sensors unzip unrar gnome.file-roller swww polkit_gnome grim slurp lm_sensors unzip unrar gnome.file-roller
libnotify swaynotificationcenter rofi-wayland imv v4l-utils libnotify swaynotificationcenter rofi-wayland imv v4l-utils
ydotool wl-clipboard socat cowsay lsd pkg-config transmission-gtk mpv ydotool wl-clipboard socat cowsay lsd pkg-config transmission-gtk mpv
gimp obs-studio blender kdenlive meson hugo gnumake ninja go gimp obs-studio blender kdenlive meson hugo gnumake ninja go
nodejs godot_4 rustup pavucontrol audacity zeroad xonotic nodejs godot_4 rustup pavucontrol audacity zeroad xonotic
openra font-awesome symbola noto-fonts-color-emoji material-icons openra font-awesome symbola noto-fonts-color-emoji material-icons
spotify swaylock-effects swayidle spotify brightnessctl swayidle
# Import Scripts # Import Scripts
(import ./config/scripts/emopicker9000.nix { inherit pkgs; }) (import ./config/scripts/emopicker9000.nix { inherit pkgs; })
(import ./config/scripts/task-waybar.nix { inherit pkgs; }) (import ./config/scripts/task-waybar.nix { inherit pkgs; })
@ -78,12 +78,6 @@
size = 24; size = 24;
}; };
# Enable & Configure QT
qt.enable = true;
qt.platformTheme = "gtk";
qt.style.name = "adwaita-dark";
qt.style.package = pkgs.adwaita-qt;
# Theme GTK # Theme GTK
gtk = { gtk = {
enable = true; enable = true;

View File

@ -56,7 +56,7 @@
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
vim wget curl vim wget curl libsForQt5.qtstyleplugin-kvantum libsForQt5.qt5ct
]; ];
fonts.packages = with pkgs; [ fonts.packages = with pkgs; [
@ -77,6 +77,15 @@
driSupport32Bit = true; driSupport32Bit = true;
}; };
nixpkgs.config.qt5 = {
enable = true;
platformTheme = "qt5ct";
style = {
package = pkgs.utterly-nord-plasma;
name = "Utterly Nord Plasma";
};
};
programs.hyprland = { programs.hyprland = {
enable = true; enable = true;
package = inputs.hyprland.packages.${pkgs.system}.hyprland; package = inputs.hyprland.packages.${pkgs.system}.hyprland;