2.home-manager/tests/modules/programs/jujutsu/empty-config.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07:00

12 lines
240 B
Nix

{ pkgs, ... }:
let
configDir = if pkgs.stdenv.isDarwin then "Library/Application Support" else ".config";
in
{
programs.jujutsu.enable = true;
nmt.script = ''
assertPathNotExists 'home-files/${configDir}/jj/config.toml'
'';
}