update deps

This commit is contained in:
iofq 2023-12-02 19:30:26 -06:00
parent 5b08bc63bc
commit fe3dde6667
11 changed files with 72 additions and 19 deletions

View file

@ -1,5 +1,8 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
twofa
];
programs.gpg = {
enable = true;
settings = {

View file

@ -7,4 +7,5 @@
./2fa
./direnv
./xdg
./warrior
]

View file

@ -2,13 +2,10 @@
{
home.packages = with pkgs; [
ripgrep
fluxcd
k9s
kubectl
python3
p7zip
nodejs
nodePackages.pnpm
gnumake
gcc
go

View file

@ -35,7 +35,7 @@
bashrcExtra = ''
export PROMPT_COMMAND="prompt_command;history -a"
export PATH="/usr/local/go/bin:~/go/bin:~/.bin:~/.local/bin:$PATH"
export GPG_2FA="cjriddz@protonmail.com"
export GPG_2FA="mail@10110110.xyz"
export MANPAGER="nvim +Man!"
export EDITOR="nvim"
export _JAVA_AWT_WM_NONREPARENTING=1

View file

@ -0,0 +1,15 @@
{ pkgs, config, ... }:
{
programs.taskwarrior = {
enable = true;
colorTheme = "solarized-dark-256";
};
home.packages = with pkgs; [
timewarrior
];
home.file."${config.xdg.dataHome}/task/hooks/on-modify.timewarrior" = {
source = "${pkgs.timewarrior}/share/doc/timew/ext/on-modify.timewarrior";
executable = true;
};
}