From 50e6ec22a8b000fc89634f3c8b5a335b28bee330 Mon Sep 17 00:00:00 2001 From: Don Harper Date: Fri, 4 Oct 2024 06:46:11 -0500 Subject: [PATCH] task | add timewarriro config --- home/common/taskwarrior.nix | 13 +++++-------- hosts/loki/colmena.nix | 17 +++++++++++++++++ 2 files changed, 22 insertions(+), 8 deletions(-) create mode 100644 hosts/loki/colmena.nix diff --git a/home/common/taskwarrior.nix b/home/common/taskwarrior.nix index ab7d856..767b63f 100644 --- a/home/common/taskwarrior.nix +++ b/home/common/taskwarrior.nix @@ -203,14 +203,11 @@ news.version = "2.6.0"; }; }; - # FIXME need to convert harper over before this will work - #home.file."timewarrior.cfg" = { - # enable = true; - # target = ".timewarrior/timewarrior.cfg"; - # text = '' - # tags.nixos.description = Working on NixOS - # ''; - #}; + xdg.configFile."timewarrior/timewarrior.cfg".text = '' + verbose = no + confirmation = off + ''; + }; home.file."vit-config.ini" = { enable = true; target = ".vit/config.ini"; diff --git a/hosts/loki/colmena.nix b/hosts/loki/colmena.nix new file mode 100644 index 0000000..e791e4a --- /dev/null +++ b/hosts/loki/colmena.nix @@ -0,0 +1,17 @@ +{ + inputs, + outputs, + lib, + config, + pkgs, + ... +}: { + imports = [ + ./default.nix + ]; + networking.hostName = "loki"; + boot.binfmt.emulatedSystems = ["aarch64-linux"]; + deployment = { + tags = ["workstation" "intel"]; + }; +}