move terminal variable closer to terminal deifnition
This commit is contained in:
parent
1834899ad0
commit
bc40956b3a
3 changed files with 4 additions and 8 deletions
|
@ -14,10 +14,6 @@ in
|
|||
};
|
||||
};
|
||||
|
||||
home.sessionVariables = {
|
||||
TERMINAL="alacritty";
|
||||
};
|
||||
|
||||
home.file.".config/i3/status.toml".source = ~/dev/dotfiles/.config/i3/status-double-bat.toml;
|
||||
|
||||
imports = [
|
||||
|
|
|
@ -14,10 +14,6 @@ in
|
|||
};
|
||||
};
|
||||
|
||||
home.sessionVariables = {
|
||||
TERMINAL="alacritty";
|
||||
};
|
||||
|
||||
home.file.".config/i3/status.toml".source = ~/dev/dotfiles/.config/i3/status-single-bat.toml;
|
||||
|
||||
imports = [
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
home.sessionVariables = {
|
||||
TERMINAL="alacritty";
|
||||
};
|
||||
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
|
Loading…
Reference in a new issue