Added live package to flake

This commit is contained in:
EsVagy42 2026-01-12 19:54:46 +01:00
parent bf68910323
commit 8d00cd6c89
2 changed files with 9 additions and 1 deletions

View file

@ -1 +1 @@
Removed jgrpp-0-65-2 Added live package to flake

View file

@ -20,6 +20,7 @@
outputs = outputs =
{ {
self,
nixpkgs, nixpkgs,
home-manager, home-manager,
plasma-manager, plasma-manager,
@ -62,8 +63,15 @@
inherit system; inherit system;
modules = baseModules ++ [ modules = baseModules ++ [
(nixpkgs + "/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix") (nixpkgs + "/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix")
{
disabledModules = [
"profiles/all-hardware.nix"
"profiles/base.nix"
];
}
]; ];
}; };
}; };
packages.${system}.live = self.nixosConfigurations.live.config.system.build.isoImage;
}; };
} }