blob: 31942f0d2ed479eaa61aa01685f691f0f9c34730 (
plain) (
blame)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
{
pkgs,
lib,
nixosConfig,
...
}:
# TODO: Remove this whole file, and move each package to a separate module. <2024-11-16>
with pkgs; let
Gui = {
Terminals = [
alacritty # default terminal
];
Misc = [
keepassxc # password manager
];
};
TuiCli = {
Social = [
iamb # best tui matrix client (as of today)
];
Pdfs = [
con2pdf # Scanner implementation
];
Misc = [
killall # kill a application by name
snap-sync-forked # A btrfs based backup solution
bc # Smart calculator
aumo # Automatic mount
jq # Json parser
];
Task = {
StartStop = [
hibernate # Hibernate wrapper that automatically stops all active task
lock # Same as `hibernate`, but for locking
];
Firefox = [
# `tskm` handles the integration between Firefox profiles and task
# contexts
pkgs.tskm
];
};
WM = {
CLITools = [
wl-clipboard # Command-line copy/paste utilities.
];
};
Media = {
View = [
zathura # PDF viewer
];
YouTube = [
yt # A command line YouTube client
];
};
Hardware = {
Storage = [
# TODO: smartmontools # Control and monitor S.M.A.R.T. enabled ATA and SCSI Hard Drives
];
Battery = [
battery # Check the battery level
];
# TODO: Also support setting the brightness with multiple backlights <2024-05-24>
Backlight =
lib.optional nixosConfig.soispha.laptop.enable
(
# Set the brightness level
brightness.override
{
backlightName = nixosConfig.soispha.laptop.backlight;
}
);
};
SystemUpdate = [
fupdate # Generic update tool.
update-sys # System update tool (meant to slot into `fupdate`).
];
FileListers = [
tree # A directory listing program displaying a depth indented list of files
fd # Simple, fast and user-friendly alternative to find
ripgrep # A search tool that combines the usability of ag with the raw speed of grep
file # Show information about a file
ll # Wrapper around `lf` to automatically change the path
lm # Wrapper around `ll` to automatically cd to the last accessed path
];
Programming = {
GeneralTools = [
stamp # Add a license header to a file
git # the fast distributed version control system
git-edit-index # Allows you to edit the indexed version of a file
git-cm # A wrapper that re-adds the last commit's subject
glow # Command-line markdown renderer
];
};
};
mapFun = x:
if builtins.isAttrs x
then
if lib.isDerivation x
then [x]
else builtins.attrValues x
else [x];
in {
config.home.packages =
[]
++ (with builtins;
concatLists
(concatLists [
(concatMap mapFun
(concatMap mapFun
(concatMap mapFun
(concatMap mapFun
(concatMap mapFun
(concatMap mapFun
(attrValues Gui)))))))
(concatMap mapFun
(concatMap mapFun
(concatMap mapFun
(concatMap mapFun
(concatMap mapFun
(concatMap mapFun
(attrValues TuiCli)))))))
]));
}
|