add nheko
This commit is contained in:
parent
0689c338ac
commit
288e354edf
3 changed files with 21 additions and 2 deletions
15
modules/home/application/nheko/default.nix
Normal file
15
modules/home/application/nheko/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ config, lib, pkgs, namespace, osConfig ? {}, ... }:
|
||||
let
|
||||
inherit (lib) mkIf mkEnableOption;
|
||||
|
||||
cfg = config.${namespace}.application.nheko;
|
||||
in
|
||||
{
|
||||
options.${namespace}.application.nheko = {
|
||||
enable = mkEnableOption "enable nheko (matrix client)";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = with pkgs; [ nheko ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue