add nheko
This commit is contained in:
parent
0689c338ac
commit
288e354edf
3 changed files with 21 additions and 2 deletions
|
@ -99,6 +99,9 @@
|
|||
|
||||
# I think this is because of zen
|
||||
"qtwebengine-5.15.19"
|
||||
|
||||
# For Nheko, the matrix client
|
||||
"olm-3.2.16"
|
||||
];
|
||||
};
|
||||
|
||||
|
|
|
@ -35,6 +35,7 @@
|
|||
bitwarden.enable = true;
|
||||
discord.enable = true;
|
||||
ladybird.enable = true;
|
||||
nheko.enable = true;
|
||||
obs.enable = true;
|
||||
onlyoffice.enable = true;
|
||||
signal.enable = true;
|
||||
|
|
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