Add zellij back

This commit is contained in:
Evie Litherland-Smith 2024-02-03 09:51:42 +00:00
parent 8586f376de
commit 78cfb418d7
2 changed files with 16 additions and 5 deletions

View file

@ -5,7 +5,10 @@
... ...
}: { }: {
imports = [./nushell/default.nix ./config/default.nix ./scripts/default.nix]; imports = [./nushell/default.nix ./config/default.nix ./scripts/default.nix];
stylix.targets.fzf.enable = true; stylix.targets = {
fzf.enable = true;
zellij.enable = true;
};
programs = rec { programs = rec {
bash.enable = true; bash.enable = true;
bat = { bat = {
@ -239,5 +242,10 @@
}; };
}; };
}; };
zellij = {
enable = true;
enableBashIntegration = true;
settings.default_layout = "compact";
};
}; };
} }

View file

@ -20,11 +20,14 @@
../nyxt/default.nix ../nyxt/default.nix
../obs/default.nix ../obs/default.nix
]; ];
programs.rofi = with pkgs; { programs = {
rofi = with pkgs; {
package = rofi-wayland; package = rofi-wayland;
terminal = "${alacritty}/bin/alacritty"; terminal = "${alacritty}/bin/alacritty";
pass.package = rofi-pass-wayland; pass.package = rofi-pass-wayland;
}; };
zellij.settings.copy_command = "wl-copy";
};
services = { services = {
gpg-agent.pinentryFlavor = "gnome3"; gpg-agent.pinentryFlavor = "gnome3";
avizo.enable = true; avizo.enable = true;