dotfiles/apps/rebuild.nix
Noah Masur cb60542980 refactor apps and separate disko disks
format-root app still not working
2023-02-26 19:53:51 -05:00

16 lines
389 B
Nix

{ pkgs, ... }: {
type = "app";
program = builtins.toString (pkgs.writeShellScript "rebuild" ''
echo ${pkgs.system}
SYSTEM=${if pkgs.stdenv.isDarwin then "darwin" else "linux"}
if [ "$SYSTEM" == "darwin" ]; then
darwin-rebuild switch --flake github:nmasur/dotfiles#lookingglass
else
nixos-rebuild switch --flake github:nmasur/dotfiles
fi
'');
}