Evie Litherland-Smith
fe2a105c4e
Change opacity of desktop components to that floating / pop-up windows are translucent, and base windows are opaque. Add zellij back (with config), but not starting by default. Add zellij config directory to rsync-local-config script.
30 lines
457 B
Nix
30 lines
457 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./bat.nix
|
|
./bottom.nix
|
|
./direnv.nix
|
|
./eza.nix
|
|
./fastfetch.nix
|
|
./fzf.nix
|
|
./git.nix
|
|
./readline.nix
|
|
./ssh.nix
|
|
./starship.nix
|
|
./zellij.nix
|
|
];
|
|
home.packages = with pkgs; [
|
|
rclone
|
|
git-sync
|
|
du-dust
|
|
];
|
|
programs = {
|
|
bash.enable = true;
|
|
fish.enable = true;
|
|
fd.enable = true;
|
|
jq.enable = true;
|
|
nix-index.enable = true;
|
|
ripgrep.enable = true;
|
|
};
|
|
}
|