2023-09-07 22:29:12 +02:00
|
|
|
{ lib, ... }:
|
2022-02-19 01:57:35 +01:00
|
|
|
|
2023-09-07 22:29:12 +02:00
|
|
|
{
|
2022-12-03 05:48:58 +01:00
|
|
|
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'';
|
2023-09-07 22:29:12 +02:00
|
|
|
|
|
|
|
removed = opt: lib.mkRemovedOptionModule [ "programs" "just" opt ] msg;
|
|
|
|
in map removed [
|
|
|
|
"enable"
|
|
|
|
"enableBashIntegration"
|
|
|
|
"enableZshIntegration"
|
|
|
|
"enableFishIntegration"
|
2022-12-03 05:48:58 +01:00
|
|
|
];
|
2022-02-19 01:57:35 +01:00
|
|
|
}
|