citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

commit 4c55ff7d576c58dab2e0c8ee3ac22c5e6f0ef78a
parent 2e2f041748f7fd1216b715f1e513804dc4d67cf9
Author: William Casarin <jb55@jb55.com>
Date:   Wed, 20 Apr 2022 17:18:04 -0700

updates

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Mbin/fuzz-notmuch-am | 2+-
Abin/noreq | 3+++
Mdotfiles/.config/neomutt/neomuttrc | 3++-
Mdotfiles/.mailcap | 1+
Mdotfiles/commands | 1+
Adotfiles/skeletons/nix-rust/shell.nix | 5+++++
Mnix-config/environment/default.nix | 1+
Mnix-config/services/desktop/default.nix | 2+-
8 files changed, 15 insertions(+), 3 deletions(-)

diff --git a/bin/fuzz-notmuch-am b/bin/fuzz-notmuch-am @@ -1,4 +1,4 @@ #!/usr/bin/env bash set -eou pipefail -echo notmuch am --am --add-link --fuzzy to:nixpkgs-dev +echo notmuch am to:nixpkgs-dev diff --git a/bin/noreq b/bin/noreq @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +printf '["REQ","",{%s}]\n' "$@" diff --git a/dotfiles/.config/neomutt/neomuttrc b/dotfiles/.config/neomutt/neomuttrc @@ -44,7 +44,8 @@ macro index \\\\ "<vfolder-from-query>" "Search mailbox" macro pager p "|delta --paging always<enter>" macro pager d "<next-page>" macro pager u "<previous-page>" -macro pager c "|cols<enter>" +macro pager c "|cols|less<enter>" +macro pager t "|collapse|less<enter>" #macro pager P "|grep patch$ | xargs curl -sL | delta --paging always<enter>" macro pager P "| mail-prpatch | delta --paging always" diff --git a/dotfiles/.mailcap b/dotfiles/.mailcap @@ -2,4 +2,5 @@ text/html; open %s; nametemplate=%s.html text/csv; pcsv %s image/*; open %s video/*; open %s +audio/*; open %s application/pdf; open %s diff --git a/dotfiles/commands b/dotfiles/commands @@ -21,6 +21,7 @@ cr compile repeat fuzz-compile-repeat cs compile show build echo cat .build-result dsa docs->stripe->api ~/docs/stripe/jumpapi dsg docs->stripe->go fuzzdoc ~/docs/stripe/go-v72.txt '^type ' +dgt docs->go->testing fuzzdoc ~/docs/godoc/testing.txt '^func ' ecc edit vdirsyncer config echo edit ~/.config/vdirsyncer/config ec edit commands fuzz-edit-scripts ed edit default.nix echo edit default.nix diff --git a/dotfiles/skeletons/nix-rust/shell.nix b/dotfiles/skeletons/nix-rust/shell.nix @@ -0,0 +1,5 @@ +{ pkgs ? import <nixpkgs> {} }: +with pkgs; +mkShell { + nativeBuildInputs = [ cargo rustc rustfmt libiconv pkgconfig ]; +} diff --git a/nix-config/environment/default.nix b/nix-config/environment/default.nix @@ -9,6 +9,7 @@ let jb55pkgs = import <jb55pkgs> { inherit pkgs; }; }) {}; myPackages = with jb55pkgs; [ rsslink + nostril bcalc btcs csv-delim diff --git a/nix-config/services/desktop/default.nix b/nix-config/services/desktop/default.nix @@ -190,7 +190,7 @@ in wantedBy = [ "graphical-session.target" ]; after = [ "graphical-session.target" ]; serviceConfig.ExecStart = "${pkgs.libnotify}/bin/notify-send -u critical standup"; - startAt = "Mon..Fri *-*-* 9:28:00"; + startAt = "Mon..Fri *-*-* 8:58:00"; }; systemd.user.services.urxvtd = {