15 lines
397 B
Nix
15 lines
397 B
Nix
# SPDX-FileCopyrightText: 2025 Ethan Reece <contact@ethanreece.com>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
# https://gitlab.com/hmajid2301/nixicle
|
|
# https://discourse.nixos.org/t/error-installing-with-disko-no-space-left/61124/3
|
|
# https://haseebmajid.dev/posts/2024-05-02-part-5b-installing-our-nix-configuration-as-part-of-your-workflow/
|
|
|
|
{ ... }:
|
|
{
|
|
imports = [
|
|
../iso.nix
|
|
./base.nix
|
|
];
|
|
}
|