test(wezterm): Add to testing
Some checks are pending
CI / Format Nix files (push) Waiting to run
CI / Test Modules (push) Waiting to run
CI / Validate sources (push) Waiting to run
Release / Make release (push) Waiting to run
Release / Publish to Flake registries (push) Blocked by required conditions
Build & deploy website / Build site (push) Waiting to run
Build & deploy website / Deploy website (push) Blocked by required conditions

This commit is contained in:
punkfairie 2024-11-02 16:00:41 -07:00
parent bda31cf1a7
commit 1fb54d67ae
Signed by: punkfairie
GPG key ID: 01823C057725C266
2 changed files with 4 additions and 1 deletions

View file

@ -25,6 +25,7 @@
./sway.nix ./sway.nix
./tmux.nix ./tmux.nix
./waybar.nix ./waybar.nix
./wezterm.nix
./zathura.nix ./zathura.nix
./zellij.nix ./zellij.nix
] ]

View file

@ -1,4 +1,5 @@
{lib, ...}: { { lib, ... }:
{
imports = [ imports = [
../modules/home-manager ../modules/home-manager
./common.nix ./common.nix
@ -33,6 +34,7 @@
swaylock.enable = true; swaylock.enable = true;
tmux.enable = true; tmux.enable = true;
waybar.enable = true; waybar.enable = true;
wezterm.enable = true;
zathura.enable = true; zathura.enable = true;
zellij.enable = true; zellij.enable = true;
}; };