summaryrefslogtreecommitdiff
path: root/home/ebisu/shared/rice/default.nix
blob: e9c70a1f57add4e65c9b369c1580279d12dbbbec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ pkgs, ... }:
{
  imports = [
    ./bottom.nix
    ./fastfetch.nix
    ./glances.nix
    ./gtk.nix
  ];

  programs = {
    btop.enable = true;
    pywal.enable = true;
  };

  home.packages = with pkgs; [
    cpufetch
    iotop
    nvtopPackages.nvidia
    htop-vim
    iftop
    neofetch
    microfetch
    pfetch-rs
    ipfetch
    hayabusa
  ];
}