From ccc0c91fe733673cf1b598a06ad30dd439835820 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Sun, 19 Apr 2020 12:47:21 +0100 Subject: [PATCH] use termite on other oses --- nixos/home-other-os.nix | 4 ++++ nixos/home.nix | 4 ++++ nixos/programs/termite.nix | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/nixos/home-other-os.nix b/nixos/home-other-os.nix index 98edfff9..ddd8c8f2 100644 --- a/nixos/home-other-os.nix +++ b/nixos/home-other-os.nix @@ -14,11 +14,15 @@ in }; }; + home.sessionVariables = { + TERMINAL="termite"; + }; targets.genericLinux.enable = true; home.file.".gitconfig".source = ~/dev/dotfiles/.gitconfig.linux.form3; home.file.".config/i3/status.toml".source = ~/dev/dotfiles/.config/i3/status-single-bat.toml; imports = [ ./home-common.nix + ./programs/termite.nix ]; } diff --git a/nixos/home.nix b/nixos/home.nix index fe2e39e4..c7db7129 100644 --- a/nixos/home.nix +++ b/nixos/home.nix @@ -14,6 +14,10 @@ in }; }; + home.sessionVariables = { + TERMINAL="alacritty"; + }; + home.file.".config/i3/status.toml".source = ~/dev/dotfiles/.config/i3/status-double-bat.toml; imports = [ diff --git a/nixos/programs/termite.nix b/nixos/programs/termite.nix index a4b4b357..1fbb4b9c 100644 --- a/nixos/programs/termite.nix +++ b/nixos/programs/termite.nix @@ -8,7 +8,7 @@ dynamicTitle = true; mouseAutohide = true; scrollOnKeystroke = false; - font = "Fira Code 12"; + font = "Fira Code Nerd Font 12"; backgroundColor = "#002b36"; foregroundColor = "#839496";