10 lines
186 B
Nix
10 lines
186 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
let
|
||
|
deploy = pkgs.writeShellScriptBin "deploy" ''
|
||
|
cd /etc/nixos
|
||
|
git pull
|
||
|
nixos-rebuild switch
|
||
|
'';
|
||
|
|
||
|
in { environment.systemPackages = [ deploy ]; }
|