17 lines
190 B
Nix
17 lines
190 B
Nix
{
|
|
self,
|
|
super,
|
|
root,
|
|
}: {
|
|
imports = with super; [
|
|
fonts
|
|
home-manager
|
|
qt
|
|
adb
|
|
];
|
|
|
|
programs = {
|
|
# make HM-managed GTK stuff work
|
|
dconf.enable = true;
|
|
};
|
|
}
|