system-manager-wakasu
1{ pkgs, ... }:
2{
3 imports = [
4 ../../home/common/dev/containers.nix
5 ../../home/common/dev/tektoncd.nix
6 ];
7 nixpkgs.config.allowUnfree = true;
8
9 home.file.".gmailctl/config.jsonnet".source = ./config.jsonnet;
10 home.file.".gmailctl/gmailctl.libsonnet".source = ./gmailctl.libsonnet;
11 home.packages = with pkgs; [
12 chromium
13 spotify
14 easyeffects
15 thunderbird
16 nautilus
17
18 slack
19
20 gmailctl
21 gcalcli
22
23 ntfy-sh
24
25 monolith # TODO: move into =desktop= ?
26
27 did
28
29 # Keyboard
30 qmk
31 qmk_hid
32
33 beancount
34 beancount-language-server
35 beanquery
36 beanhub-cli
37 fava
38
39 startpaac
40
41 batzconverter
42
43 simple-scan
44 keybase
45
46 transmission_4-gtk
47
48 # lisp
49 roswell
50 sbcl
51
52 go-org-readwise
53 ];
54
55}