dotfiles/justfile

13 lines
220 B
Makefile
Raw Normal View History

2024-08-28 11:58:09 -05:00
user := `whoami`
hostname := `hostname`
hm_flags := "--flake .#" + user + "@" + hostname
2024-08-28 11:07:30 -05:00
alias b := build
alias inst := install
build:
home-manager build {{hm_flags}}
install:
home-manager switch {{hm_flags}}