From 6f43153f59b4ea95df14a35d44fe6edb5e09f5e9 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sun, 17 Jul 2022 13:51:22 +0200 Subject: [PATCH] watson: Init --- users/simon/modules/default.nix | 1 + users/simon/modules/watson.nix | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 users/simon/modules/watson.nix diff --git a/users/simon/modules/default.nix b/users/simon/modules/default.nix index 8a35a57..9a561bf 100644 --- a/users/simon/modules/default.nix +++ b/users/simon/modules/default.nix @@ -24,6 +24,7 @@ ./tmate.nix ./tmux.nix ./vdirsyncer.nix + ./watson.nix ./xcompose.nix ./xdg.nix ./youtube-dl.nix diff --git a/users/simon/modules/watson.nix b/users/simon/modules/watson.nix new file mode 100644 index 0000000..59ad5c0 --- /dev/null +++ b/users/simon/modules/watson.nix @@ -0,0 +1,17 @@ +{ lib, nixosConfig, pkgs, ... }: + +lib.mkIf nixosConfig.sbruder.gui.enable { + home.packages = with pkgs; [ + watson # time tracking + ]; + + xdg.configFile."watson/config".text = lib.generators.toINI { } { + options = { + confirm_new_project = true; + confirm_new_tag = true; + date_format = "%Y-%m-%d"; + pager = false; + reverse_log = false; + }; + }; +}