Skip to content

Commit

Permalink
chore: Update sources
Browse files Browse the repository at this point in the history
  • Loading branch information
frederictobiasc committed Jan 15, 2025
1 parent cdab2f1 commit 54af5b9
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 34 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ TODO.MD
# Local debugging
img
*.raw
*.qcow2
mnt/
tree/
43 changes: 13 additions & 30 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
systems = import inputs.systems;
imports = [ inputs.pre-commit-hooks-nix.flakeModule ];
flake.nixosModules = {
naext = import ./nix/module.nix;
dm-verity = import ./nix/dm-verity.nix;
naext = import ./nix/module.nix;
};
perSystem =
{
Expand Down
6 changes: 4 additions & 2 deletions nix/tests/appliance.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,10 @@ in
"esp" = {
contents = {
# Necessary for the image to boot
"/EFI/BOOT/BOOT${lib.toUpper efiArch}.EFI".source = "${pkgs.systemd}/lib/systemd/boot/efi/systemd-boot${efiArch}.efi";
"/EFI/Linux/${config.system.boot.loader.ukiFile}".source = "${config.system.build.uki}/${config.system.boot.loader.ukiFile}";
"/EFI/BOOT/BOOT${lib.toUpper efiArch}.EFI".source =
"${pkgs.systemd}/lib/systemd/boot/efi/systemd-boot${efiArch}.efi";
"/EFI/Linux/${config.system.boot.loader.ukiFile}".source =
"${config.system.build.uki}/${config.system.boot.loader.ukiFile}";
};
repartConfig = {
Type = "esp";
Expand Down
2 changes: 1 addition & 1 deletion nix/tests/basic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
...
}:
{
name = "confext-basic";
name = "basic";
nodes = {
machine = _: {
naext = {
Expand Down

0 comments on commit 54af5b9

Please sign in to comment.