move TERM envvar to foot module

This commit is contained in:
jacekpoz 2024-02-14 15:39:23 +01:00
parent 06c4893c05
commit 87af62f88b
No known key found for this signature in database
GPG key ID: 94E812A8B12AAE3C
2 changed files with 3 additions and 1 deletions

View file

@ -142,7 +142,6 @@
environment = { environment = {
sessionVariables = { sessionVariables = {
TERM = "foot";
EDITOR = "${pkgs.neovim}/bin/nvim"; EDITOR = "${pkgs.neovim}/bin/nvim";
GTK_IM_MODULE = "fcitx"; GTK_IM_MODULE = "fcitx";

View file

@ -18,6 +18,9 @@ in {
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
environment.sessionVariables = {
TERM = "foot";
};
home-manager.users.${config'.username} = { home-manager.users.${config'.username} = {
programs.foot = { programs.foot = {
enable = true; enable = true;