summaryrefslogtreecommitdiff
path: root/modules/home/i3wm/nord-blue/fastfetch.nix
blob: a9c6bd30cd97df8b7a99ea675708615f67dfe0a3 (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
25
26
27
28
29
30
31
32
33
{
  pkgs,
  lib,
  ...
}: {
  programs.fastfetch = {
    enable = true;

    settings = {
      logo = {
        type = "builtin";
        source = "nixos_small";
      };

      display = {
        separator = "  ";
      };

      modules = [
        "title"
        "os"
        "kernel"
        "uptime"
        "packages"
        "shell"
        "terminal"
        "cpu"
        "memory"
        "disk"
      ];
    };
  };
}