mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
add blackbox
This commit is contained in:
parent
10d2f62c53
commit
df7683d699
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
../../modules/gnome-base.nix
|
../../modules/gnome-base.nix
|
||||||
../../modules/gnome-config.nix
|
../../modules/gnome-config.nix
|
||||||
../../modules/gnome-terminal.nix
|
#../../modules/gnome-terminal.nix
|
||||||
../../modules/gnome-extensions.nix
|
../../modules/gnome-extensions.nix
|
||||||
# Not required as display scale is set 2.0 (multiple of 1).
|
# Not required as display scale is set 2.0 (multiple of 1).
|
||||||
#../../modules/gnome-fractional-scaling.nix
|
#../../modules/gnome-fractional-scaling.nix
|
||||||
@ -28,6 +28,7 @@
|
|||||||
../../modules/wallpaper.nix
|
../../modules/wallpaper.nix
|
||||||
|
|
||||||
../../modules/programs.nix
|
../../modules/programs.nix
|
||||||
|
../../modules/blackbox.nix
|
||||||
../../modules/nextcloud-integration.nix
|
../../modules/nextcloud-integration.nix
|
||||||
../../modules/syncthing.nix
|
../../modules/syncthing.nix
|
||||||
../../modules/signal-desktop.nix
|
../../modules/signal-desktop.nix
|
||||||
|
@ -20,13 +20,14 @@
|
|||||||
|
|
||||||
../../modules/gnome-base.nix
|
../../modules/gnome-base.nix
|
||||||
../../modules/gnome-config.nix
|
../../modules/gnome-config.nix
|
||||||
../../modules/gnome-terminal.nix
|
#../../modules/gnome-terminal.nix
|
||||||
../../modules/gnome-extensions.nix
|
../../modules/gnome-extensions.nix
|
||||||
../../modules/gnome-fractional-scaling.nix
|
../../modules/gnome-fractional-scaling.nix
|
||||||
../../modules/fwupd-gnome.nix
|
../../modules/fwupd-gnome.nix
|
||||||
../../modules/wallpaper.nix
|
../../modules/wallpaper.nix
|
||||||
|
|
||||||
../../modules/programs.nix
|
../../modules/programs.nix
|
||||||
|
../../modules/blackbox.nix
|
||||||
../../modules/spaceFM.nix
|
../../modules/spaceFM.nix
|
||||||
../../modules/ausweisapp.nix
|
../../modules/ausweisapp.nix
|
||||||
../../modules/nextcloud-integration.nix
|
../../modules/nextcloud-integration.nix
|
||||||
|
30
modules/blackbox.nix
Normal file
30
modules/blackbox.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ 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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
@ -8,7 +8,7 @@
|
|||||||
gnome.gnome-logs # Systemd journal log viewer
|
gnome.gnome-logs # Systemd journal log viewer
|
||||||
gnome-photos
|
gnome-photos
|
||||||
gnome-tour # Introduction to GNOME
|
gnome-tour # Introduction to GNOME
|
||||||
gnome-console # Can't be configured with Home-Manager as of 2023-10.
|
gnome-console # Terminal emulator. TODO Can the color scheme be configured with dconf?
|
||||||
gnome.cheese # Webcam viewer
|
gnome.cheese # Webcam viewer
|
||||||
gnome.gnome-music # Music player
|
gnome.gnome-music # Music player
|
||||||
gnome.epiphany # Web browser
|
gnome.epiphany # Web browser
|
||||||
|
Loading…
Reference in New Issue
Block a user