mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
18 lines
441 B
Nix
18 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" ];
|
|
};
|
|
}
|