mirror of
https://github.com/nmasur/dotfiles
synced 2025-03-14 21:37:04 +00:00
12 lines
342 B
Nix
12 lines
342 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
pkgs.writeShellScriptBin "rebuild" ''
|
||
|
echo ${pkgs.system}
|
||
|
SYSTEM=${if pkgs.stdenv.isDarwin then "darwin" else "linux"}
|
||
|
if [ "$SYSTEM" == "darwin" ]; then
|
||
|
sudo darwin-rebuild switch --flake ${builtins.toString ../../../../.}
|
||
|
else
|
||
|
doas nixos-rebuild switch --flake ${builtins.toString ../../../../.}
|
||
|
fi
|
||
|
''
|