aboutsummaryrefslogtreecommitdiff
path: root/home/rices/nord-blue/fastfetch.nix
blob: 700ae800e89f00dd1a70030e66330313c42c9735 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{...}: {
  programs.fastfetch = {
    enable = true;
    settings = {
      logo = {
        type = "builtin";
        source = "nixos_small";
      };
      display.separator = "  ";
      modules = [
        "title"
        "os"
        "kernel"
        "uptime"
        "packages"
        "shell"
        "terminal"
        "cpu"
        "memory"
        "disk"
      ];
    };
  };
}