niximg: use modulesPath
This commit is contained in:
parent
1493f43ba7
commit
11000f56e2
@ -31,15 +31,12 @@ let
|
|||||||
|
|
||||||
local = import "${toString ./.}/${self}.nix";
|
local = import "${toString ./.}/${self}.nix";
|
||||||
|
|
||||||
iso = nixpkgs.lib.optionalAttrs (self == "niximg")
|
|
||||||
(import "${nixpkgs}/nixos/modules/installer/cd-dvd/iso-image.nix");
|
|
||||||
in
|
in
|
||||||
attrValues flake.nixosModules ++ [
|
attrValues flake.nixosModules ++ [
|
||||||
core
|
core
|
||||||
global
|
global
|
||||||
local
|
local
|
||||||
home
|
home
|
||||||
iso
|
|
||||||
];
|
];
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
|
{ modulesPath, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./NixOS.nix
|
./NixOS.nix
|
||||||
|
"${modulesPath}/installer/cd-dvd/iso-image.nix"
|
||||||
];
|
];
|
||||||
|
|
||||||
isoImage.makeEfiBootable = true;
|
isoImage.makeEfiBootable = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user