nix

configuration files that power my machines
Log | Files | Refs | README | LICENSE

commit 31f8ee5ec21e6f07191ecdd178081f641c4e4aa2
parent 09c815498ae4d6e06c6fb051d84094ccbda24d42
Author: mtmn <miro@haravara.org>
Date:   Wed, 10 Jun 2026 15:47:11 +0200

work: switch to doric-oak

Diffstat:
Mhosts/work/default.nix | 0
Mhosts/work/overlays/config/ghostty/config | 0
Mhosts/work/overlays/config/magdalena/config.json.nix | 0
Mhosts/work/overlays/config/nvim/fnl/init.fnl | 0
Mhosts/work/overlays/config/shell/overrides | 0
Ahosts/work/overlays/config/shell/profile/fzf | 0
Mhosts/work/overlays/home/tmux.conf | 0
Mmodules/mixins/dotfiles/config/newsraft/hack/sync | 6+++---
8 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/hosts/work/default.nix b/hosts/work/default.nix Binary files differ. diff --git a/hosts/work/overlays/config/ghostty/config b/hosts/work/overlays/config/ghostty/config Binary files differ. diff --git a/hosts/work/overlays/config/magdalena/config.json.nix b/hosts/work/overlays/config/magdalena/config.json.nix Binary files differ. diff --git a/hosts/work/overlays/config/nvim/fnl/init.fnl b/hosts/work/overlays/config/nvim/fnl/init.fnl Binary files differ. diff --git a/hosts/work/overlays/config/shell/overrides b/hosts/work/overlays/config/shell/overrides Binary files differ. diff --git a/hosts/work/overlays/config/shell/profile/fzf b/hosts/work/overlays/config/shell/profile/fzf Binary files differ. diff --git a/hosts/work/overlays/home/tmux.conf b/hosts/work/overlays/home/tmux.conf Binary files differ. diff --git a/modules/mixins/dotfiles/config/newsraft/hack/sync b/modules/mixins/dotfiles/config/newsraft/hack/sync @@ -76,7 +76,7 @@ for line in FEEDS_FILE.read_text().splitlines(): ET.indent(root, space=' ') opml_data = cast(bytes, ET.tostring(root, encoding='utf-8', xml_declaration=True)) -req = Request(f"{MINIFLUX_URL}/v1/import", data=opml_data, method='POST') +req = Request(f'{MINIFLUX_URL}/v1/import', data=opml_data, method='POST') req.add_header('X-Auth-Token', MINIFLUX_TOKEN) req.add_header('Content-Type', 'application/xml') @@ -84,8 +84,8 @@ try: urlopen(req) print('Done') except HTTPError as e: - print(f"HTTP Error {e.code}", file=sys.stderr) + print(f'HTTP Error {e.code}', file=sys.stderr) except URLError as e: - print(f"URL Error: {e.reason}", file=sys.stderr) + print(f'URL Error: {e.reason}', file=sys.stderr) finally: _ = CACHE_FILE.write_text(json.dumps(cache, indent=2, ensure_ascii=False))