The below works fine on revision 31f969f69f02b62e417bcc39571a605977cb89fa ```nix xdg.config.files."zsh/.zprofile".text = mkIf cfg.autoStart autoStartCmd; ``` On latest master it doesn't tho, however the below does ```nix xdg.config.files."zsh/.zprofile" = mkIf cfg.autoStart {text = autoStartCmd;}; ```