dotfiles/justfile
2024-08-28 11:58:09 -05:00

12 lines
220 B
Makefile

user := `whoami`
hostname := `hostname`
hm_flags := "--flake .#" + user + "@" + hostname
alias b := build
alias inst := install
build:
home-manager build {{hm_flags}}
install:
home-manager switch {{hm_flags}}