Who needs nix and home-manager?
These files are meant to be installed as symlinks by Dotbot. In case I forget, the configuration file is install.conf.yaml. There’s also a Makefile that compiles stuff.
Note that the configurations for the laptop/desktop and the detachable are maintained in different branches. I should figure out how to merge them somehow.
localpkglist.txt and pkglist.txt are supposed to be lists of packages that are out of and in the Arch Linux repos respectively.
I use a pre-commit hook to generate them.
#!/usr/bin/env bash
set -eo pipefail
pacman -Qqe > pkglist.txt
pacman -Sl aur | awk '/installed.$/{print $2;}' > localpkglist.txt
git add pkglist.txt localpkglist.txt