flake: rework modules folder structure
This commit is contained in:
parent
5d64c56d40
commit
0952665f6b
56 changed files with 3 additions and 3 deletions
14
modules/home/desktopPrograms/wezterm/default.nix
Normal file
14
modules/home/desktopPrograms/wezterm/default.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
options.settings.programs.wezterm = {
|
||||
enable = lib.mkEnableOption "enable wezterm terminal emulator";
|
||||
};
|
||||
|
||||
config = lib.mkIf config.settings.programs.wezterm.enable {
|
||||
programs.wezterm = {
|
||||
enable = true;
|
||||
#enableZshIntegration = true;
|
||||
extraConfig = builtins.replaceStrings [ "-- nix-replace" ] [ "" ] (builtins.readFile ./wezterm.lua);
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue