35 lines
1.4 KiB
Makefile
35 lines
1.4 KiB
Makefile
|
|
# prevents default audio devices from changing when connecting to audio dock
|
|
setup-pulseaudio:
|
|
sudo sed -i 's/^load-module module-switch-on-connect$/# load-module module-switch-on-connect/g' /etc/pulse/default.pa
|
|
pulseaudio -k
|
|
|
|
# add vfat to MODULES in /etc/mkinitcpio.conf
|
|
# add `cryptkey=UUID=<uuid>:vfat:/keyfile` to boot line in bootloader
|
|
# - use lsblk -o NAME,UUID to get UUID
|
|
install-rm-keyfile:
|
|
sudo cp ./base/rm-keyfile.service /etc/systemd/system
|
|
sudo systemctl enable rm-keyfile.service
|
|
|
|
install-loadout:
|
|
@if [ -z "$(HOSTNAME)" ]; then echo "USAGE: make HOSTNAME=... install-loadout"; exit 1; fi
|
|
nix-env -v -i loadout -f default.nix --arg hostConfig "import ./config/$(HOSTNAME).nix"
|
|
|
|
install-fonts:
|
|
@if [ -z "$(HOSTNAME)" ]; then echo "USAGE: make HOSTNAME=... install-loadout"; exit 1; fi
|
|
mkdir -p ~/.local/share/fonts/
|
|
p=$$(nix-build --no-out-link --arg hostConfig ./config/$(HOSTNAME).nix -A fonts); \
|
|
cp -rL $$p/share/fonts ~/.local/share/fonts/loadout
|
|
chmod o+w -R ~/.local/share/fonts/loadout
|
|
fc-cache
|
|
|
|
install-tmpfiles:
|
|
mkdir -p ~/.config/user-tmpfiles.d
|
|
cp base/tmpfiles.conf ~/.config/user-tmpfiles.d/loadout.conf
|
|
systemd-tmpfiles --user --create # run now to create anything which needs it
|
|
systemctl --user enable systemd-tmpfiles-setup.service
|
|
systemctl --user enable --now systemd-tmpfiles-clean.timer
|
|
|
|
|
|
install: setup-pulseaudio install-rm-keyfile install-fonts install-tmpfiles install-loadout
|