feat: configure wezterm
This commit is contained in:
parent
1df1f4ed07
commit
2138743d3e
3 changed files with 15 additions and 1 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
firefox
|
firefox
|
||||||
wezterm
|
discord
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.git = {
|
programs.git = {
|
||||||
|
|
|
||||||
13
modules/_home/wezterm.nix
Normal file
13
modules/_home/wezterm.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
programs.wezterm = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.wezterm;
|
||||||
|
extraConfig = ''
|
||||||
|
local config = wezterm.config_builder()
|
||||||
|
|
||||||
|
config.enable_tab_bar = false
|
||||||
|
|
||||||
|
return config
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
./_home/default.nix
|
./_home/default.nix
|
||||||
./_home/niri.nix
|
./_home/niri.nix
|
||||||
./_home/git.nix
|
./_home/git.nix
|
||||||
|
./_home/wezterm.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue