1
0
Fork 0

Override gnome-terminal

This commit is contained in:
Malte Brandy 2020-10-14 05:32:20 +02:00
parent 10cccb4b18
commit 7238616607
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9
2 changed files with 7 additions and 1 deletions

View file

@ -2,7 +2,7 @@
services.gpg-agent.pinentryFlavor = "gnome3";
dconf.settings = {
"org/gnome/desktop/input-sources" = {
sources = [(lib.hm.gvariant.mkTuple ["xkb" "de+neo"])]; # use neo
sources = [ (lib.hm.gvariant.mkTuple [ "xkb" "de+neo" ]) ]; # use neo
xkb-options = [
"altwin:swap_lalt_lwin" # swap alt and win
"lv3:menu_switch" # So that gnome-settings does not set it to ralt

View file

@ -4,6 +4,12 @@ let
inherit (my-lib) colors;
in {
home.sessionVariables.TERMINAL = "${pkgs.kitty}/bin/kitty";
home.packages = [
(pkgs.runCommandLocal "fake-gnome-terminal" {} ''
mkdir -p $out/bin
ln -s ${pkgs.kitty}/bin/kitty $out/bin/gnome-terminal
'')
];
programs.kitty = {
enable = true;
keybindings = {