nixpkgs/nixos/modules/programs/extra-container.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
439 B
Nix
Raw Normal View History

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