nix-config/hosts/common/optional/desktop/global.nix

17 lines
289 B
Nix
Raw Normal View History

2023-12-24 11:16:59 +01:00
{
config,
lib,
pkgs,
...
}: {
2024-02-02 19:59:41 +01:00
imports = [./pipewire.nix ../printing.nix ./flatpak.nix ./xremap.nix];
2023-12-24 11:16:59 +01:00
# Enable for GTK
programs.dconf.enable = true;
# Fix for qt6 plugins
environment.profileRelativeSessionVariables = {
QT_PLUGIN_PATH = ["/lib/qt-6/plugins"];
};
2023-12-24 11:16:59 +01:00
}