17 lines
224 B
Nix
Raw Normal View History

2024-07-19 14:00:55 +02:00
{
config,
lib,
pkgs,
...
}:
2024-07-18 06:08:27 +02:00
2024-07-19 00:36:02 +02:00
with lib;
2024-07-18 06:08:27 +02:00
let
cfg = config.modules.feishin;
2024-07-19 14:00:55 +02:00
in
{
2024-07-19 00:36:02 +02:00
options.modules.feishin.enable = mkEnableOption "feishin";
2024-07-18 06:08:27 +02:00
2024-07-19 14:00:55 +02:00
config = mkIf cfg.enable { home.packages = with pkgs; [ feishin ]; };
}