1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-10 10:47:02 +00:00
home-manager/tests/modules/programs/jujutsu/empty-config.nix

13 lines
244 B
Nix
Raw Normal View History

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