watson: Init
This commit is contained in:
parent
2c61a284b8
commit
6f43153f59
|
@ -24,6 +24,7 @@
|
|||
./tmate.nix
|
||||
./tmux.nix
|
||||
./vdirsyncer.nix
|
||||
./watson.nix
|
||||
./xcompose.nix
|
||||
./xdg.nix
|
||||
./youtube-dl.nix
|
||||
|
|
17
users/simon/modules/watson.nix
Normal file
17
users/simon/modules/watson.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue