587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
17 lines
441 B
Nix
17 lines
441 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
let
|
|
cfg = config.programs.extra-container;
|
|
in {
|
|
options = {
|
|
programs.extra-container.enable = mkEnableOption ''
|
|
extra-container, a tool for running declarative NixOS containers
|
|
without host system rebuilds
|
|
'';
|
|
};
|
|
config = mkIf cfg.enable {
|
|
environment.systemPackages = [ pkgs.extra-container ];
|
|
boot.extraSystemdUnitPaths = [ "/etc/systemd-mutable/system" ];
|
|
};
|
|
}
|