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
{ config, inputs, currentSystem, pkgs, lib, ... }:
let
cfg = config.ctucxConfig.programs.shellUtilities;
in {
options = {
ctucxConfig.programs.shellUtilities = {
enable = lib.mkEnableOption "basic shell utilities";
};
};
config = lib.mkIf cfg.enable {
home-manager.users.katja = {
home = {
packages = with pkgs; [
coreutils
inputs.colmena.packages."${currentSystem}".colmena
agenix
age
wget
curl
rsync
eza
bat
ripgrep
fd
file
bc
unzip
smartmontools
e2fsprogs
dosfstools
gptfdisk
] ++ (if pkgs.stdenv.isLinux then [
usbutils
pciutils
lm_sensors
] else [
]);
};
programs = {
bat.enable = true;
jq.enable = true;
};
};
};
}