nixos-config/machines/iso-image/default.nix

13 lines
292 B
Nix
Raw Normal View History

2021-06-07 19:22:59 +04:00
{ modulesPath, lib, inputs, pkgs, ... }: {
2021-11-06 13:14:18 +04:00
imports = with inputs.self.nixosModules; with inputs.self.nixosProfiles; [
2022-12-29 19:19:02 +04:00
"${modulesPath}/installer/cd-dvd/iso-image.nix"
2021-06-24 12:41:17 +04:00
inputs.self.nixosRoles.base
themes
fonts
cage
gtk
alacritty
];
2022-12-29 19:19:02 +04:00
nix.settings.max-jobs = 4;
}