From a428dcd54b592ac78eab53b674ef95549093a7ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Sun, 19 Apr 2020 12:52:23 +0100 Subject: [PATCH] use default terminal on ubuntu --- nixos/home-other-os.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nixos/home-other-os.nix b/nixos/home-other-os.nix index ddd8c8f2..f241a16a 100644 --- a/nixos/home-other-os.nix +++ b/nixos/home-other-os.nix @@ -15,14 +15,13 @@ 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 ]; }