mainly styling things

This commit is contained in:
xunuwu 2024-10-30 09:13:46 +01:00
parent 06397e1f66
commit 48f90b854a
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI
16 changed files with 379 additions and 149 deletions

View file

@ -0,0 +1,6 @@
{
programs = {
# make HM-managed GTK stuff work
dconf.enable = true;
};
}

View file

@ -1,17 +0,0 @@
{
self,
super,
root,
}: {
imports = with super; [
fonts
home-manager
qt
adb
];
programs = {
# make HM-managed GTK stuff work
dconf.enable = true;
};
}

View file

@ -0,0 +1,9 @@
_: {pkgs, ...}: {
services.tumbler.enable = true; # image thumbnails
programs.thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-archive-plugin
];
};
}