From 0cf4139392cb5ba1abfc53b9051933c3b24d7234 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Thu, 18 Jun 2026 10:38:23 -0400 Subject: [PATCH] Fix launching shikane. This was failing because the latest version of shikane opens the config file as read+write. --- nix/configuration/roles/shikane/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nix/configuration/roles/shikane/default.nix b/nix/configuration/roles/shikane/default.nix index a629f07..18f9cca 100644 --- a/nix/configuration/roles/shikane/default.nix +++ b/nix/configuration/roles/shikane/default.nix @@ -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"; }; }; };