1
0
mirror of https://github.com/kmein/niveum synced 2026-03-21 20:31:07 +01:00

feat: watson time tracker

This commit is contained in:
2020-10-19 18:57:29 +02:00
parent 30ad4816f7
commit 8e3691d775
2 changed files with 10 additions and 0 deletions

9
configs/watson.nix Normal file
View File

@@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
environment.systemPackages = [ pkgs.watson ];
system.activationScripts.watsonFiles = ''
install -d ${config.users.users.me.home}/.config/watson/
ln -sf ${config.users.users.me.home}/cloud/Dropbox/watson-frames.json ${config.users.users.me.home}/.config/watson/frames
'';
}