14 lines
324 B
Makefile
14 lines
324 B
Makefile
.PHONY: darwin home default nixos
|
|
|
|
default: nixos
|
|
|
|
darwin:
|
|
# nix run nix-darwin -- switch --flake ~/.local/share/dotfiles/config/nix
|
|
nix run nix-darwin -- switch --flake .
|
|
|
|
home:
|
|
nix --extra-experimental-features "nix-command flakes" run home-manager/master -- switch --flake .
|
|
|
|
nixos:
|
|
nixos-rebuild switch --flake .
|