• Stars
    star
    25
  • Rank 926,083 (Top 19 %)
  • Language
    Go
  • Created almost 4 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Simple cli utility that pushes NixOS configuration and triggers a rebuild using ssh.

pushnix

A cli tool to push your NixOS configuration repository to a remote host using git and then run nixos-rebuild on the host using ssh.

Setup

  1. Make sure you have the following dependencies on the remote host.
  • git-receive-pack in path (included in git in nixpkgs).
  • A running SSH server and a remote user you can connect to.
  1. On the remote NixOS host create a directory where you want the NixOS configuration to be.
  2. Inside the directory setup the repository.
  • git init
  • git config receive.denyCurrentBranch updateInstead (info)
  1. In your local NixOS configuration git repository run git remote add <remote_name> <user>@<host>:<path>.
  • <remote_name> - Whatever name you want this remote host to be called when interacting with it using git or pushnix.
  • <user> - The remote user you can SSH to.
  • <host> - DNS or IP of remote host you can SSH to.
  • <path> - Path to git repository on the remote host.

Now you've set it up so that you can run git push <remote_name> and the git repository on the remote side will be updated (as long as it is checked out on the same branch as you are pushing).

Usage

Let's say you created a remote called my_server in your NixOS configuration git repository.

Now you can run pushnix deploy my_server to push the configuration and rebuild the NixOS configuration on the remote host.

Everything after -- will be passed onto the nixos-rebuild command.

pushnix deploy my_server -- -I nixos-config=/home/user/config/machines/my_server/configuration.nix

Why?

NixOps and morph are much more featureful options that didn't fit one my use cases.

They build the derivations locally, copy them over to the remote host and run the activation script there. This doesn't make much sense when being run on a laptop where everything is built locally instead on the server itself.

Also, I want one of my servers to occationally receive updated configuration and then just use system.autoUpgrade option to keep it updated. This requires the configuration to live on the remote host.

This also simplifies testing a configuration on a remote host, instead of pushing to a central repository, SSH into the host, pull from the central repository and finally run nixos-rebuild.