watson: Init

nazuna
Simon Bruder 2022-07-17 13:51:22 +02:00
parent 2c61a284b8
commit 6f43153f59
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
2 changed files with 18 additions and 0 deletions

View File

@ -24,6 +24,7 @@
./tmate.nix
./tmux.nix
./vdirsyncer.nix
./watson.nix
./xcompose.nix
./xdg.nix
./youtube-dl.nix

View File

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