aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/aux-files/chromium/master-preferences.json
blob: 5a2049fa7231c0e87d027d013c58d6636e3df1d0 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
    "distribution": {
        "import_bookmarks": false,
        "make_chrome_default": false,
        "make_chrome_default_for_user": false,
        "verbose_logging": true,
        "skip_first_run_ui": true,
        "suppress_first_run_default_browser_prompt": true
    },
    "browser": {
        "has_seen_welcome_page" : true,
        "check_default_browser" : false
    },
    "dns_prefetching": {
        "enabled": false
    },
    "alternate_error_pages": {
        "enabled": false
    },
    "hardware": {
        "audio_capture_enabled": false
    },
    "default_apps": "noinstall",
    "hide_web_store_icon": true,
    "homepage": "https://www.gnu.org/software/guix/"
}
td>gnu: Use license: prefix in shellutils.scm....* gnu/packages/shellutils.scm Use license: prefix in all packages. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Brendan Tildesley 2019-04-28gnu: direnv: Change to the go-build-system....The go-build-system is slightly more appropriate, and switching resolves an issue with combining the 'unpack phase from the gnu-build-system, and the 'setup-go-environment from the go-build-system. With both of those phases creating a directory, the first-subdirectory call at the end of the 'unpack phase can return different values depending on the filesystem ordering. * gnu/packages/shellutils.scm (direnv)[source]: Use the git repository, as this works better with the go-build-system. [build-system]: Change to the go-build-system. [arguments]: Adjust for the go-build-system. [native-inputs]: Remove go. Christopher Baines 2019-04-21gnu: direnv: Remove go references from output....In the long run, it would be good to move direnv across to the go-build-system, and update the package, but these changes do succeed in reducing the closure size a lot. Thanks to Tanguy Le Carrour for raising this issue on guix-devel. * gnu/packages/shellutils.scm (direnv)[arguments]: Include the remove-go-references phase from the go-build-system. [inputs,native-inputs]: Move all inputs to native-inputs, as these are no longer referenced in the output. Christopher Baines