summaryrefslogtreecommitdiff
path: root/hermes/home-manager/leo/programs/default.nix
blob: f19a4dcc44eb7ea9e2f7ec610ecc4e0ae91b0fe8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{...}: {
  imports = [
    ./keepassxc.nix
    ./alacritty.nix
    ./zed.nix

    ./zsh.nix
    ./tmux.nix
    ./fastfetch.nix
  ];

  keepassxc.enable = true;
  alacritty.enable = true;
  zed.enable = true;

  zsh.enable = true;
  tmux.enable = true;
  fastfetch.enable = true;
}