nixpkgs/home/qt.nix
Daniel Siepmann d9ba963dad
Migrate explicit imports to home manager imports
That way I do not need to explicitly provide dependencies.
But home-manager will pass all the special args.
2024-05-30 14:11:08 +02:00

16 lines
141 B
Nix

{
pkgs
,...
}:
{
qt = {
enable = true;
platformTheme = {
# Re use existing gtk theme
name = "gtk";
};
};
}