main
1{ pkgs, ... }:
2{
3 imports = [
4 ../../home/common/profiles/work-fedora.nix
5 ];
6
7 home.file.".gmailctl/config.jsonnet".source = ./config.jsonnet;
8 home.file.".gmailctl/gmailctl.libsonnet".source = ./gmailctl.libsonnet;
9
10 home.packages = with pkgs; [
11 oath-toolkit
12 gmailctl
13 jayrah
14 jayrat
15 tekton-lsp
16 pi-acp
17 shpool-remote
18 ];
19}