summaryrefslogtreecommitdiffstats
path: root/brave-config.nix
blob: 7709da7c175666db70f224180a798fdd9dc4c72d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, pkgs, ...}: 
{
home.file = {
	  ".config/BraveSoftware/Brave-Browser/Local State" = {
	    source = ./brave-config/Local-State;
	    force = true;
	  };
	  ".config/BraveSoftware/Brave-Browser/Default/Preferences" = {
	    source = ./brave-config/Preferences;
	    force = true;
	  };
  };
}