Fix launching shikane.

This was failing because the latest version of shikane opens the config file as read+write.
This commit is contained in:
Tom Alexander
2026-06-18 10:38:23 -04:00
parent 6094fee196
commit 0cf4139392

View File

@@ -37,6 +37,9 @@ in
me.install.user.talexander.file = {
".config/shikane/config.toml" = {
source = ./files/config.toml;
# Shikane opens with write permissions, so we need a regular file, not a symlink to the nix store.
method = "overwrite";
mode = "0644";
};
};
};