update deps
This commit is contained in:
parent
5b08bc63bc
commit
fe3dde6667
11 changed files with 72 additions and 19 deletions
|
|
@ -1,5 +1,8 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
twofa
|
||||
];
|
||||
programs.gpg = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
|
|
|||
|
|
@ -7,4 +7,5 @@
|
|||
./2fa
|
||||
./direnv
|
||||
./xdg
|
||||
./warrior
|
||||
]
|
||||
|
|
|
|||
|
|
@ -2,13 +2,10 @@
|
|||
{
|
||||
home.packages = with pkgs; [
|
||||
ripgrep
|
||||
fluxcd
|
||||
k9s
|
||||
kubectl
|
||||
python3
|
||||
p7zip
|
||||
nodejs
|
||||
nodePackages.pnpm
|
||||
gnumake
|
||||
gcc
|
||||
go
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
15
modules/programs/warrior/default.nix
Executable file
15
modules/programs/warrior/default.nix
Executable 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue