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