nix-community / impermanence

Modules to help you handle persistent state on systems with ephemeral root storage [maintainer=@talyz]
MIT License
1.01k stars 76 forks source link

home.persistence cyrillic path #145

Open AlienJust opened 8 months ago

AlienJust commented 8 months ago

Why

persistence."/nix/persist/home/aj01" = {
      directories = [
        "Загрузки"
        "Документы"
        "Музыка"
        "Изображения"
        "Видео"
        ".gnupg"
        ".ssh"
        ".local/share/keyrings"
        ".local/share/direnv"
        ".local/share/wallpapers"
        ".local/share/TelegramDesktop/tdata"
        "Downloads"
        ".config/dconf"
        {
          directory = ".local/share/Steam";
          method = "symlink";
        }
      ];
      files = [
        ".bash_history"
        ".zsh_history"
        ".config/gnome-initial-setup-done"
      ];
      allowOther = true;
    };

mounts only first directory with Cyrillic name "Загрузки"? if I change order then mounted first in the list. All English named dirs mounted OK

Home-manager service does not show any error.