Gnome/blackbox: set up preferences

This commit is contained in:
Toast 2024-09-13 14:14:00 +02:00
parent 3a2bc2cda5
commit 694104e62c

View file

@ -3,4 +3,16 @@
environment.systemPackages = with pkgs; [
blackbox-terminal
];
home-manager.users.toast = {lib, ...}: {
dconf.settings = with lib.hm.gvariant; {
"com/raggesilver/BlackBox" = {
# Dark mode
style-preference = mkUint32 2;
# Default working directory is home folder
working-directory-mode = mkUint32 1;
custom-font = "JetBrainsMono Nerd Font Mono 12";
};
};
};
}