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,10 +20,13 @@
../nyxt/default.nix ../nyxt/default.nix
../obs/default.nix ../obs/default.nix
]; ];
programs.rofi = with pkgs; { programs = {
package = rofi-wayland; rofi = with pkgs; {
terminal = "${alacritty}/bin/alacritty"; package = rofi-wayland;
pass.package = rofi-pass-wayland; terminal = "${alacritty}/bin/alacritty";
pass.package = rofi-pass-wayland;
};
zellij.settings.copy_command = "wl-copy";
}; };
services = { services = {
gpg-agent.pinentryFlavor = "gnome3"; gpg-agent.pinentryFlavor = "gnome3";