blob: 44fa58331f87ad3319cf2a744526b4e77fc1ef42 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
{ lib, config, ... }:
let cfg = config.my.home.element;
in {
options.my.home.element = with lib; {
enable = mkEnableOption "element configuration";
};
config =
lib.mkIf cfg.enable { home.packages = with pkgs; [ element-desktop ]; };
}
|