2021-10-04 12:37:57 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.programs.extra-container;
|
|
|
|
in {
|
|
|
|
options = {
|
2024-05-15 15:35:15 +00:00
|
|
|
programs.extra-container.enable = lib.mkEnableOption ''
|
2021-10-04 12:37:57 +00:00
|
|
|
extra-container, a tool for running declarative NixOS containers
|
|
|
|
without host system rebuilds
|
2024-04-21 15:54:59 +00:00
|
|
|
'';
|
2021-10-04 12:37:57 +00:00
|
|
|
};
|
2024-05-15 15:35:15 +00:00
|
|
|
config = lib.mkIf cfg.enable {
|
2021-10-04 12:37:57 +00:00
|
|
|
environment.systemPackages = [ pkgs.extra-container ];
|
|
|
|
boot.extraSystemdUnitPaths = [ "/etc/systemd-mutable/system" ];
|
|
|
|
};
|
|
|
|
}
|