1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-02 23:21:02 +01:00
home-manager/modules/deprecations.nix
Naïm Camille Favier 3ca51e0a33 glab: remove module
2025-11-15 09:44:58 +01:00

42 lines
1.4 KiB
Nix

{ lib, ... }:
{
imports = [
(lib.mkRemovedOptionModule [ "programs" "glab" "enable" ] ''
The glab module has been removed because changes are needed upstream to
support mixing declarative and stateful configurations. See #8066.
'')
(lib.mkRemovedOptionModule [ "services" "password-store-sync" ] ''
Use services.git-sync instead.
'')
(lib.mkRemovedOptionModule [ "services" "keepassx" ] ''
KeePassX is no longer maintained.
'')
(lib.mkRemovedOptionModule [ "programs" "thefuck" ] ''
The corresponding package was removed from nixpkgs,
consider using `programs.pay-respects` instead.
'')
(lib.mkRemovedOptionModule [ "programs" "octant" ] ''
Octant is no longer maintained and project was archived.
'')
(lib.mkRemovedOptionModule [ "services" "barrier" ] ''
The corresponding package was removed from nixpkgs,
consider using `deskflow` or `input-leap` instead.
'')
]
# Just module removal
++ (map
(
opt:
lib.mkRemovedOptionModule [ "programs" "just" opt ] ''
'program.just' is deprecated, simply add 'pkgs.just' to 'home.packages' instead.
See https://github.com/nix-community/home-manager/issues/3449#issuecomment-1329823502''
)
[
"enable"
"enableBashIntegration"
"enableZshIntegration"
"enableFishIntegration"
]
);
}