mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
Add a module for consolidating the module level deprecations in an easier to spot location. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
22 lines
751 B
Nix
22 lines
751 B
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.
|
|
'')
|
|
];
|
|
}
|