mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
28 lines
579 B
Nix
28 lines
579 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
qt = {
|
||
|
enable = true;
|
||
|
platformTheme = "gnome";
|
||
|
style = {
|
||
|
name = "adwaita";
|
||
|
package = pkgs.dummyTheme;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
nixpkgs.overlays = [
|
||
|
(self: super: {
|
||
|
dummyTheme = pkgs.runCommandLocal "theme" { } "mkdir $out";
|
||
|
})
|
||
|
];
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileRegex home-path/etc/profile.d/hm-session-vars.sh \
|
||
|
'QT_QPA_PLATFORMTHEME="gnome"'
|
||
|
assertFileRegex home-path/etc/profile.d/hm-session-vars.sh \
|
||
|
'QT_STYLE_OVERRIDE="adwaita"'
|
||
|
'';
|
||
|
};
|
||
|
}
|