depot/third_party/home-manager/modules/programs/just.nix
Default email c6444ecc3c Project import generated by Copybara.
GitOrigin-RevId: 51e44a13acea71b36245e8bd8c7db53e0a3e61ee
2024-01-05 12:06:15 +01:00

16 lines
427 B
Nix

{ lib, ... }:
{
imports = let
msg = ''
'program.just' is deprecated, simply add 'pkgs.just' to 'home.packages' instead.
See https://github.com/nix-community/home-manager/issues/3449#issuecomment-1329823502'';
removed = opt: lib.mkRemovedOptionModule [ "programs" "just" opt ] msg;
in map removed [
"enable"
"enableBashIntegration"
"enableZshIntegration"
"enableFishIntegration"
];
}