summaryrefslogtreecommitdiff
path: root/home/ebisu/core/filesystem/default.nix
blob: 394cc049f7dcb99f0e679fff5bd70d7b281a266a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ pkgs, ... }:
{
  imports = [
    ./core
    ./archive.nix
  ];

  programs = {
    nnn.enable = true;
    # lf.enable = true;
  };

  home.packages = with pkgs; [
    nemo
    dust
    dysk
    ncdu
    file
    yazi
    broot
  ];
}