Skip to content

Commit

Permalink
feat(iso): include disko on the ISO
Browse files Browse the repository at this point in the history
  • Loading branch information
MattSturgeon committed Apr 9, 2024
1 parent 72be878 commit 08a7382
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions isos/flake-module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ in
modules = [
self.nixosModules.common
inputs.home-manager.nixosModules.home-manager
{
({ pkgs, ... }: {
# TODO move to a separate configuration file
home-manager = {
useGlobalPkgs = true;
Expand All @@ -26,7 +26,10 @@ in
};
boot.kernelParams = [ "copytoram" ];
nix.settings.experimental-features = "nix-command flakes";
}
environment.systemPackages = with pkgs; [
disko
];
})
];
format = "gnome-installer-iso";
customFormats.gnome-installer-iso = { modulesPath, ... }: {
Expand Down

0 comments on commit 08a7382

Please sign in to comment.