feat(nix): Zen programs.
module
This commit is contained in:
parent
4141a527e0
commit
a17032a2b2
4 changed files with 97 additions and 12 deletions
17
nix/modules/home-manager/zen.nix
Normal file
17
nix/modules/home-manager/zen.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue