diff --git a/README.md b/README.md index 763e3c2..a3cdae1 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ $ colmena apply-local [--sudo] Remote machines are hosted on [DigitalOcean](https://www.digitalocean.com/). The custom images used by each droplet is built by running: ```bash -$ nix build #.digital-ocean.[stoat|tapir] +$ nix build .#digital-ocean.[stoat|tapir] ``` The above command produces an image with root password disabled in favor of SSH. A droplet running this image will automatically pull in any enabled SSH keys diff --git a/hive/titan/default.nix b/hive/titan/default.nix index 8bbbd7e..ed562ee 100644 --- a/hive/titan/default.nix +++ b/hive/titan/default.nix @@ -5,10 +5,16 @@ home-manager.nixosModules.home-manager ]; - deployment.targetHost = "143.198.97.253"; + deployment.targetHost = "161.35.235.205"; networking.hostName = "titan"; + nix.settings.experimental-features = [ "nix-command" "flakes" ]; + + services.openssh.enable = true; + + programs.mosh.enable = true; + home-manager = { useGlobalPkgs = true; useUserPackages = true;