This commit is contained in:
parent
6b2b8ee7c0
commit
d0ed3fe5c8
4 changed files with 19 additions and 2 deletions
16
apps/zen.nix
Normal file
16
apps/zen.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#apps/zen.nix
|
||||
{ inputs, pkgs, lib, config, ... }:
|
||||
{
|
||||
config = lib.mkIf (lib.elem config.networking.hostName [ "FredOS-Gaming" "FredOS-Macbook" ]) {
|
||||
environment.systemPackages = [
|
||||
(pkgs.wrapFirefox
|
||||
inputs.zen-browser.packages.${pkgs.stdenv.hostPlatform.system}.zen-browser-unwrapped
|
||||
{
|
||||
extraPolicies = {
|
||||
DisableTelemetry = true;
|
||||
};
|
||||
}
|
||||
)
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue