Manage system config using nix on any distro (numtide/system-manager fork)
Find a file
Ramses 31d86eb7da
Merge pull request #38 from numtide/auto_update_deps
Bump flake.lock and Cargo.lock
2023-08-28 09:05:57 +02:00
.github Fix error in workflow. 2023-05-29 11:43:31 +02:00
examples Add support for environment.systemPackages. 2023-07-05 14:33:35 +02:00
nix Use the lib functions to (de)activate profiles. 2023-07-05 14:58:06 +02:00
src Fix reload for services without reload functionality. 2023-06-29 17:10:39 +02:00
test Use the lib functions to (de)activate profiles. 2023-07-05 14:58:06 +02:00
.envrc Add nix shell and some checks 2023-02-02 00:55:37 +01:00
.gitignore Continue implementing basic features. 2023-02-02 17:31:10 +00:00
Cargo.lock cargo update 2023-08-28 03:48:45 +00:00
Cargo.toml Rework error handling and merge the two state files. 2023-04-11 21:55:26 +02:00
default.nix Add nix shell and some checks 2023-02-02 00:55:37 +01:00
flake.lock flake.lock: Update 2023-08-28 03:48:44 +00:00
flake.nix Make package dependencies overridable. 2023-07-01 00:56:43 +02:00
garnix.yaml Rename garnix.io config file. (#7) 2023-04-27 14:03:13 +02:00
LICENSE Initial commit 2023-02-01 18:21:52 +02:00
README.md README: add light commercial support offer 2023-08-23 14:04:29 +02:00
shell.nix Add nix shell and some checks 2023-02-02 00:55:37 +01:00

System Manager using Nix

This project provides a basic method to manage system configuration using Nix on any Linux distribution. It builds on the many modules that already exist in NixOS.

Warning: System Manager is a work in progress, you can expect things not to work or to break.

Usage

Getting Nix

In order to use System Manager, you will first need to install Nix. You can either use your distro's package manager, or use one of the different options to install Nix, like the official installer or this new installer.

Usage with flakes

Defining the configuration

A basic Nix flake using System Manager would look something like this:

{
  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";

    system-manager = {
      url = "github:numtide/system-manager";
      inputs.nixpkgs.follows = "nixpkgs";
    };
  };

  outputs = { self, flake-utils, nixpkgs, system-manager }: {
    systemConfigs.default = system-manager.lib.makeSystemConfig {
      modules = [
        ./modules
      ];
    };
  };
}

And you would then put your System Manager modules in the modules directory, which should contain a default.nix file which functions as the entrance point.

A simple System Manager module could look something like this:

{ config, lib, pkgs, ... }:

{
  config = {
    environment = {
      etc = {
        "foo.conf".text = ''
          launch_the_rockets = true
        '';
      };
      systemPackages = [
        pkgs.ripgrep
        pkgs.fd
      ];
    };

    systemd.services = {
      foo = {
        enable = true;
        serviceConfig = {
          Type = "oneshot";
          RemainAfterExit = true;
        };
        wantedBy = [ "system-manager.target" ];
        script = ''
          ${lib.getBin pkgs.foo}/bin/foo
          echo "We launched the rockets!"
        '';
      };
    };
  };
}

Activating the configuration

Once the configuration defined, you can activate it using the system-manager CLI:

nix run 'github:numtide/system-manager' -- switch --flake '.'

Currently supported features

Currently it is possible to configure files under /etc/ and systemd services. More features may follow later.

Commercial support

Looking for help or customization?

Get in touch with Numtide to get a quote. We make it easy for companies to work with Open Source projects: https://numtide.com/contact