grimm-nixos-laptop/common/graphics/qt.nix

56 lines
1.1 KiB
Nix
Raw Normal View History

2024-05-07 23:31:41 +02:00
{
pkgs,
lib,
config,
...
}:
2024-04-16 12:25:00 +02:00
let
cfg = config.grimmShared;
in
{
2024-05-07 23:31:41 +02:00
config =
with cfg;
lib.mkIf (enable && graphical) {
qt = {
enable = true;
style = "kvantum";
platformTheme = "qt5ct";
};
2024-04-16 12:25:00 +02:00
2024-05-07 23:31:41 +02:00
environment.systemPackages =
with pkgs;
with kdePackages;
[
qtstyleplugin-kvantum
catppuccin-sddm-corners
libsForQt5.qtgraphicaleffects
catppuccin-kvantum
kdePackages.audiocd-kio
kdePackages.kio-extras
kdePackages.kio
xcb-util-cursor
qt6ct
kdePackages.dolphin
qtwayland
];
2024-04-16 12:25:00 +02:00
2024-05-07 23:31:41 +02:00
environment.pathsToLink = [ "/share/Kvantum" ];
2024-04-16 12:25:00 +02:00
2024-05-07 23:31:41 +02:00
services.displayManager = {
sddm = {
enable = true;
theme = "catppuccin-sddm-corners";
wayland.enable = true;
wayland.compositor = "weston";
};
defaultSession = lib.optionalString cfg.sway.enable "sway";
2024-04-16 12:25:00 +02:00
};
2024-04-18 21:16:40 +02:00
2024-05-07 23:31:41 +02:00
boot.plymouth = {
themePackages = with pkgs; [ catppuccin-plymouth ];
theme = "catppuccin-macchiato";
enable = true;
};
2024-04-27 11:08:44 +02:00
};
2024-04-16 12:25:00 +02:00
}