about summary refs log tree commit diff
path: root/nixos/modules/programs/extra-container.nix
blob: 6dcfba7971da242b9aa615a31380f69d26d8f0ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, pkgs, lib, ... }:

let
  cfg = config.programs.extra-container;
in {
  options = {
    programs.extra-container.enable = lib.mkEnableOption ''
      extra-container, a tool for running declarative NixOS containers
      without host system rebuilds
    '';
  };
  config = lib.mkIf cfg.enable {
    environment.systemPackages = [ pkgs.extra-container ];
    boot.extraSystemdUnitPaths = [ "/etc/systemd-mutable/system" ];
  };
}