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

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

18 lines
441 B
Nix
Raw Normal View History

2021-09-30 19:03:20 +00:00
{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.programs.extra-container;
in {
options = {
programs.extra-container.enable = 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 = mkIf cfg.enable {
environment.systemPackages = [ pkgs.extra-container ];
boot.extraSystemdUnitPaths = [ "/etc/systemd-mutable/system" ];
};
}