1
0
Fork 0

Activate ff sync

This commit is contained in:
Malte Brandy 2021-07-12 00:50:44 +02:00
parent 056fec8e73
commit 362da0ed68
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9
2 changed files with 22 additions and 0 deletions

View file

@ -87,6 +87,18 @@
"url": "https://github.com/NixOS/nixpkgs/archive/87807e64a5ef5206b745a40af118c7be8db73681.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"nixos-19.09": {
"branch": "nixos-19.09",
"description": "Nix Packages collection",
"homepage": "",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "75f4ba05c63be3f147bcc2f7bd4ba1f029cedcb1",
"sha256": "157c64220lf825ll4c0cxsdwg7cxqdx4z559fdp7kpz0g6p8fhhr",
"type": "tarball",
"url": "https://github.com/NixOS/nixpkgs/archive/75f4ba05c63be3f147bcc2f7bd4ba1f029cedcb1.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"obelisk": {
"branch": "master",
"description": "Obelisk provides an easy way to develop and deploy your Reflex project for web and mobile",

View file

@ -0,0 +1,10 @@
{ pkgs, ... }: {
disabledModules = [ "services/networking/firefox/sync-server.nix" ];
imports = [
"${pkgs.sources."nixos-19.09"}/nixos/modules/services/networking/firefox/sync-server.nix"
];
services.firefox = {
enable = true;
allowNewUsers = false;
};
}