2.home-manager/modules/programs/just/default.nix
Austin Horstman 4fca600cb1 treewide: implement auto importing for modules
Reduce maintenance burden and increase efficiency by automatically
importing modules following a specific convention.

Co-authored-by: awwpotato <awwpotato@voidq.com>
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-06-22 23:58:37 -05:00

18 lines
455 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"
];
}