dotfiles/etc/apps/prod.nix

19 lines
400 B
Nix
Raw Normal View History

{ pkgs, config, inputs, ... }: {
2024-04-28 11:35:35 +02:00
environment.systemPackages = with pkgs; [
taskwarrior
timewarrior
logseq
inputs.romodoro.packages.x86_64-linux.default
taskwarrior-tui
#inputs.dttyper.packages.x86_64-linux.default
#(pkgs.callPackage ./dttyper/default.nix { })
#(pkgs.callPackage ./romodoro/default.nix { })
#(pkgs.callPackage ./goki/default.nix { })
2024-05-18 01:10:04 +02:00
2024-04-28 11:35:35 +02:00
];
2024-05-18 01:10:04 +02:00
2024-04-28 11:35:35 +02:00
}