Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 857 Bytes

File metadata and controls

24 lines (19 loc) · 857 Bytes

My dotfiles

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.

Arch Linux

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