14 lines
178 B
Nix
14 lines
178 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
users.users.makefu.packages = with pkgs; [
|
|
taskwarrior
|
|
(pass.withExtensions (ext: [ ext.pass-otp ]))
|
|
gopass
|
|
mutt
|
|
weechat
|
|
tmux
|
|
];
|
|
|
|
}
|