feat(nix): Zen programs. module

This commit is contained in:
Ahmad Ansori Palembani 2024-11-13 08:42:48 +07:00
parent 4141a527e0
commit a17032a2b2
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6
4 changed files with 97 additions and 12 deletions

View file

@ -0,0 +1,17 @@
{ pkgs, config, vars, ... }:
{
programs.zen = {
enable = true;
# REF: https://github.com/nix-community/home-manager/blob/342a1d682386d3a1d74f9555cb327f2f311dda6e/modules/programs/firefox/mkFirefoxModule.nix#L264
package = null; # we only want the config
profiles.${config.home.username} = {
id = 0;
isDefault = true;
};
nativeMessagingHosts = [
pkgs.passff-host
];
};
}