Manage firefox config in nix

This commit is contained in:
Dave Gallant
2023-03-28 20:31:01 -04:00
parent 2480ef675d
commit 6df0b25b9b
3 changed files with 25 additions and 9 deletions

View File

@@ -438,6 +438,20 @@ in {
# ms-python.python
];
};
firefox = {
enable = stdenv.isLinux;
profiles = {
default = {
id = 0;
isDefault = true;
settings = {
"privacy.resistFingerprinting" = true;
};
};
};
};
};
home.file.".Xmodmap".source = ./.Xmodmap;