1
0
Fork 0

fix(nix): add minimal firefox home configuration

This commit is contained in:
Lucas Sta Maria 2024-08-18 17:41:12 -07:00
parent 6819066f20
commit da01de3d24
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47
2 changed files with 26 additions and 6 deletions

View file

@ -46,7 +46,6 @@
libnotify
tokei
firefox
discord
steam
bitwarden
@ -152,4 +151,13 @@
enable = true;
settings.editor = "emacsclient";
};
programs.firefox = {
enable = true;
policies = {
WebsiteFilter = {
Block = [ "*://*.facebook.com/" ];
};
};
};
}