blob: 2546b76a114f30625237736b0906597d3099cf58 (
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
34
35
|
inputs:
{ pkgs, ... }:
{
imports = [
inputs.self.nixosModules.usecases.desktop.default
];
users.extraUsers.minijackson.packages = with pkgs; [
pass
tmuxp
taskwarrior
tokei
neofetch
ffmpeg
youtube-dl
pavucontrol
pandoc
poppler_utils
# TODO: on development workstation
/*
rr
rtags
gcc
clang
clang-tools
*/
aspell
aspellDicts.en
aspellDicts.en-computers
aspellDicts.en-science
aspellDicts.fr
];
}
|