1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00
home-manager/modules/programs/just.nix
Robert Helgesson f1d4f49e71
just: simplify
2023-09-07 22:29:12 +02:00

17 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"
];
}