nixos/profiles/sway/theme.nix

32 lines
558 B
Nix
Raw Normal View History

2024-07-28 21:08:02 +02:00
{
config,
lib,
pkgs,
...
}:
2023-03-19 12:38:08 +01:00
let
cfg = config.my.profiles.sway-theme;
in
{
options.my.profiles.sway-theme = with lib; {
enable = mkEnableOption "sway-theme profile";
};
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
gtk-engine-murrine
gtk_engines
gsettings-desktop-schemas
lxappearance
qgnomeplatform
numix-cursor-theme
numix-icon-theme
numix-icon-theme-circle
adwaita-qt
arc-kde-theme
arc-theme
];
2023-06-01 00:09:26 +02:00
qt.platformTheme = "qt5ct";
2023-03-19 12:38:08 +01:00
};
}