NixOS profiles for servers [maintainer=@numtide]
Go to file
2023-02-13 19:13:10 +01:00
.github github: add homepage and topics 2023-02-13 19:13:10 +01:00
docs docs MVP 2023-02-13 17:20:20 +01:00
nixos common/openssh: update renamed setting 2023-02-10 13:22:59 +10:00
bors.toml bors.toml: re-generate from the current checks 2023-02-07 18:29:57 +01:00
default.nix add nix-remote-builder role 2023-02-04 09:40:57 +01:00
flake.lock flake.lock: Update 2023-02-13 00:04:45 +00:00
flake.nix docs MVP 2023-02-13 17:20:20 +01:00
LICENSE Create LICENSE 2023-01-16 23:39:46 +01:00
README.md docs MVP 2023-02-13 17:20:20 +01:00

SrvOS - NixOS for your server

STATUS: experimental

SrvOS is a collection of opinionated and sharable NixOS configurations.

As we learn more about NixOS in various deployments, we end up re-writing the same modules and configs. This is a way for us to speed up and share our setups.

Instead of supporting everything, our goal is to target certain verticals and make the support super smooth there.

Quick Usage

Add srvos to your flake.nix to augment your NixOS configuration. For example to deploy a GitHub Action runner on Hetzner:

{
  inputs = {
    srvos.url = "github:numtide/srvos";
  };
  outputs = { srvos, nixpkgs, ... }: {
    nixosConfigurations.myHost = nixpkgs.lib.nixosSystem {
      system = "x86_64-linux";
      modules = [
        srvos.nixosModules.common
        srvos.nixosModules.hardware-hetzner-amd
        srvos.nixosModules.roles-github-actions-runner
      ];
    };
  };
}

For more usage and documentation in general, see https://numtide.github.io/srvos/.

Known limitations

The current modules are only tested to work on the NixOS unstable release. When updating srvos, we commend that you follow the same pin of nixpkgs that is being used by this project.

License

MIT


This is a Numtide project.

NumTide Logo