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; + }; + }; +}