13 lines
249 B
Nix
Executable file
13 lines
249 B
Nix
Executable file
{ pkgs, config, inputs, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
taskwarrior
|
|
timewarrior
|
|
logseq
|
|
#inputs.romodoro.packages.x86_64-linux.default
|
|
taskwarrior-tui
|
|
inputs.dttyper.packages.x86_64-linux.default
|
|
];
|
|
}
|
|
|
|
|