snow-cli test

This commit is contained in:
do butterflies cry? 2026-03-13 00:42:54 +10:00
parent 9c188c46c9
commit 03c72f7582
Signed by: cry
GPG key ID: F68745A836CA0412
13 changed files with 488 additions and 133 deletions

View file

@ -0,0 +1,16 @@
{
modulesPath,
config,
lib,
pkgs,
...
}: {
config = lib.mkIf (config?isoImage) {
# TODO: do i really need to import ALL of this?
imports = [(modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix")];
environment.systemPackages = [
pkgs.neovim
];
};
}