12 lines
160 B
Nix
12 lines
160 B
Nix
|
{
|
||
|
pkgs,
|
||
|
...
|
||
|
}:
|
||
|
{
|
||
|
home-manager.users.kalle.programs.firefox = {
|
||
|
enable = true;
|
||
|
nativeMessagingHosts = [ pkgs.plasma-browser-integration ];
|
||
|
};
|
||
|
|
||
|
}
|