Skip to content

Commit

Permalink
nixos/schroot: fix missing newline characters
Browse files Browse the repository at this point in the history
  • Loading branch information
bjsowa committed Oct 31, 2024
1 parent ce2bcc7 commit 42369ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nixos/modules/programs/schroot.nix
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ in
nssdatabases,
}:
{
"schroot/${name}/copyfiles".text = lib.strings.concatStringsSep "\n" copyfiles;
"schroot/${name}/copyfiles".text = (lib.strings.concatStringsSep "\n" copyfiles) + "\n";
"schroot/${name}/fstab".source = fstab;
"schroot/${name}/nssdatabases".text = lib.strings.concatStringsSep "\n" nssdatabases;
"schroot/${name}/nssdatabases".text = (lib.strings.concatStringsSep "\n" nssdatabases) + "\n";
}
) cfg.profiles);
};
Expand Down

0 comments on commit 42369ee

Please sign in to comment.