nix-git/modules/blackbox.nix

31 lines
817 B
Nix
Raw Normal View History

2024-01-13 22:04:09 +01:00
{ config, pkgs, ... }:
{
users.users.yoda = {
packages = with pkgs; [
blackbox-terminal # Terminal emulator
nautilus-open-any-terminal # For Nautilus (GNOME files) integration
];
};
programs.dconf.enable = true;
home-manager.users.yoda = { osConfig, config, pkgs, ... }: {
dconf.settings = {
# For Nautilus (GNOME files) integration
"com/github/stunkymonkey/nautilus-open-any-terminal" = {
terminal = "blackbox";
};
"com/raggesilver/BlackBox" = {
remember-window-size = true;
terminal-bell = false;
# Theming.
# There are more compatible themes online: https://github.com/storm119/Tilix-Themes/blob/master/Themes.md
theme-dark = "Japanesque";
theme-light = "Solarized Light";
};
};
};
}