mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 11:36:05 +01:00
37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ lib, ... }:
|
|
{
|
|
imports = [
|
|
(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"
|
|
]
|
|
);
|
|
}
|