1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-01 06:31:04 +01:00
home-manager/tests/modules/programs/carapace/nushell.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07:00

30 lines
566 B
Nix

{
lib,
pkgs,
realPkgs,
config,
...
}:
{
programs = {
carapace.enable = true;
nushell.enable = true;
};
_module.args.pkgs = lib.mkForce realPkgs;
nmt.script =
let
configDir =
if pkgs.stdenv.isDarwin && !config.xdg.enable then
"home-files/Library/Application Support/nushell"
else
"home-files/.config/nushell";
in
''
assertFileExists "${configDir}/config.nu"
assertFileRegex "${configDir}/config.nu" \
'source /nix/store/[^/]*-carapace-nushell-config.nu'
'';
}