tangled
alpha
login
or
join now
devins.page
/
flake
0
fork
atom
configurations for my servers and desktops
nix
nixos
flake
dots
dotfiles
0
fork
atom
overview
issues
pulls
pipelines
feat: fastfetch
devins.page
2 months ago
7fa66ed5
f691ff7d
+22
1 changed file
expand all
collapse all
unified
split
modules
users
devin.nix
+22
modules/users/devin.nix
···
28
28
alejandra
29
29
bun
30
30
coreutils
31
31
+
fastfetch
31
32
gh
32
33
git
33
34
just
···
43
44
programs = {
44
45
home-manager.enable = true;
45
46
47
47
+
fastfetch = {
48
48
+
enable = true;
49
49
+
settings = {
50
50
+
logo = {
51
51
+
type = "small";
52
52
+
};
53
53
+
modules = [
54
54
+
"title"
55
55
+
"uptime"
56
56
+
"host"
57
57
+
"os"
58
58
+
"localip"
59
59
+
"disk"
60
60
+
"terminal"
61
61
+
"media"
62
62
+
];
63
63
+
};
64
64
+
};
65
65
+
46
66
fish = {
47
67
enable = true;
48
68
interactiveShellInit = ''
···
51
71
end
52
72
starship init fish | source
53
73
fish_add_path /opt/homebrew/bin
74
74
+
fastfetch
75
75
+
set fish_greeting
54
76
'';
55
77
};
56
78