https://github.com/petrkozorezov/arkenfox-userjs-nix
The daily auto updated nix version of arkenfox/user.js.
https://github.com/petrkozorezov/arkenfox-userjs-nix
anti-fingerprinting anti-tracking arkenfox firefox mozilla nix nixos privacy security settings
Last synced: 4 months ago
JSON representation
The daily auto updated nix version of arkenfox/user.js.
- Host: GitHub
- URL: https://github.com/petrkozorezov/arkenfox-userjs-nix
- Owner: petrkozorezov
- Created: 2025-02-09T09:57:43.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2025-03-07T01:18:35.000Z (4 months ago)
- Last Synced: 2025-03-07T02:25:26.585Z (4 months ago)
- Topics: anti-fingerprinting, anti-tracking, arkenfox, firefox, mozilla, nix, nixos, privacy, security, settings
- Language: Shell
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# arkenfox/user.js nix
This is the daily auto updated nix version of [arkenfox/user.js](https://github.com/arkenfox/user.js/).
## Usage with Home-manager
1. follow the [manual](https://nix-community.github.io/home-manager/index.xhtml#ch-nix-flakes) to set up home-manager with flakes
1. add flake input
1. pass flake input to `extraSpecialArgs`
1. add settings to Firefox profile(s)flake.nix
```nix
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
arkenfox-userjs.url = "github:petrkozorezov/arkenfox-userjs-nix";
};outputs = inputs@{ nixpkgs, home-manager, ... }: {
homeConfigurations.my-user = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux;
extraSpecialArgs = { inherit inputs; };
modules = [
{ pkgs, inputs, ... }: {
programs.firefox = {
enable = true;
profiles.myprofile.settings = inputs.arkenfox-userjs.lib.userjs // {
# your overrides here, e.g.
"browser.startup.page" = 3; # restore session
};
};
}
];
};
};
}
```