nixos/modules/desktop/wezterm/default.nix
2024-07-07 13:31:42 +04:00

20 lines
287 B
Nix

{
options,
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.modules.desktop.wezterm;
in {
options.modules.desktop.wezterm = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
wezterm
];
};
}