fix(shikane): override existing config file

This commit is contained in:
2026-05-31 17:47:18 +02:00
parent 50d3b38f1e
commit 808936338f

View File

@@ -11,7 +11,9 @@
config = lib.mkIf config.shikane.enable { config = lib.mkIf config.shikane.enable {
home.packages = with pkgs; [ (config.nixgl.wrap wdisplays) ]; home.packages = with pkgs; [ (config.nixgl.wrap wdisplays) ];
services.shikane.enable = true; services.shikane.enable = true;
home.file.".config/shikane/config.toml".text = '' home.file.".config/shikane/config.toml" = {
force = true;
text = ''
[[profile]] [[profile]]
name = "work" name = "work"
@@ -64,4 +66,5 @@
adaptive_sync = false adaptive_sync = false
''; '';
}; };
};
} }