nix/config/Live.nix

13 lines
202 B
Nix
Raw Normal View History

2025-01-18 21:01:06 +03:00
{ lib, config, inputs, ... }:
let
cfg = config.module.live;
in
{
config = lib.mkIf cfg.enable {
imports = [
2025-01-18 21:20:02 +03:00
"${inputs.nixpkgs}/nixos/modules/installer/cd-dvd/iso-image.nix"
2025-01-18 21:01:06 +03:00
];
};
}