forked from poz/niksos
move TERM envvar to foot module
This commit is contained in:
parent
06c4893c05
commit
87af62f88b
2 changed files with 3 additions and 1 deletions
|
@ -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";
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue