Merge pull request #130388 from oxalica/fix/etc-nixos-tag-in-activation

This commit is contained in:
Maciej Krüger 2021-11-04 15:26:17 +01:00 committed by GitHub
commit f37f1b2d01
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -138,3 +138,9 @@ foreach my $fn (@oldCopied) {
# Rewrite /etc/.clean.
close CLEAN;
write_file("/etc/.clean", map { "$_\n" } @copied);
# Create /etc/NIXOS tag if not exists.
# When /etc is not on a persistent filesystem, it will be wiped after reboot,
# so we need to check and re-create it during activation.
open TAG, ">>/etc/NIXOS";
close TAG;