Files
nix/home/hosts/andromache/default.nix

20 lines
229 B
Nix

{
lib,
inputs,
config,
pkgs,
...
}:
{
imports = [
(import ../astyanax {
inherit inputs;
inherit config;
inherit pkgs;
})
];
programs.taskwarrior.config.recurrence = lib.mkForce "on";
}