20 lines
260 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
2025-01-24 03:05:34 +01:00
config = mkIf cfg.enable {
# TODO: Move to audioling
home.packages = with pkgs; [ feishin ];
};
2024-07-19 14:00:55 +02:00
}