summaryrefslogtreecommitdiff
path: root/nixos/modules/features/monitoring/default.nix
blob: df0a937d34890800c196532b7de789e9827ecf3e (plain)
1
2
3
4
5
6
7
8
9
10
11
{ pkgs, ... }:

{
  environment.systemPackages = with pkgs; [
    (btop.override { cudaSupport = true; })
    duf
    fastfetch
    ghfetch
    hyfetch
  ];
}