mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
33 lines
979 B
Nix
33 lines
979 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
# A direct integration in Nautilus is still in progress: https://gitlab.gnome.org/raggesilver/blackbox/-/issues/20
|
|
# Thus, we use nautilus-open-any-terminal.
|
|
|
|
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";
|
|
};
|
|
};
|
|
};
|
|
}
|