0xda157's home-manager and nixos config
1{
2 programs.fastfetch.settings = {
3 display.separator = " | ";
4 modules = [
5 {
6 type = "os";
7 key = " OS ";
8 format = "{pretty-name}";
9 }
10 {
11 type = "host";
12 key = " Host ";
13 }
14 {
15 type = "uptime";
16 key = " Uptime ";
17 }
18 {
19 type = "display";
20 key = " Display ";
21 compactType = "original-with-refresh-rate";
22 }
23 {
24 type = "cpu";
25 key = " CPU ";
26 format = "{name}";
27 }
28 {
29 type = "gpu";
30 key = " GPU ";
31 }
32 {
33 type = "memory";
34 key = " Memory ";
35 format = "{used} / {total}";
36 }
37 {
38 type = "packages";
39 key = " Packages";
40 }
41 {
42 type = "wm";
43 key = " WM ";
44 }
45 {
46 type = "shell";
47 key = " Shell ";
48 }
49 {
50 type = "localip";
51 key = " Local IP";
52 }
53 {
54 type = "colors";
55 symbol = "circle";
56 key = " Colors ";
57 }
58 ];
59 };
60}