nixos-config/modules/graphical/terminal/default.nix
Charlotte Van Petegem caa225e749
Switch to wezterm
2022-06-28 14:05:11 +02:00

15 lines
369 B
Nix

{ config, lib, pkgs, ... }:
{
options.chvp.graphical.terminal.enable = lib.mkOption {
default = false;
example = true;
};
config = lib.mkIf config.chvp.graphical.terminal.enable {
home-manager.users.charlotte = { pkgs, ... }: {
home.packages = [ pkgs.wezterm ];
xdg.configFile."wezterm/wezterm.lua".source = ./wezterm.lua;
};
};
}