diff --git a/README.md b/README.md deleted file mode 100644 index f1be84d..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Nix-Syncthing - -Helper flake for configuring syncthing across multiple systems. - -Check out the `nixosConfigurations` and `syncthingConfiguration` outputs of `flake.nix` as well as the contents of the `example` folder to see how to use it \ No newline at end of file diff --git a/flake.nix b/flake.nix index a421942..2b23bf9 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,6 @@ forEachSystem = nixpkgs.lib.genAttrs systems; forEachPkgs = lambda: forEachSystem (system: lambda (pkgsFor system)); in { - # development tooling devShells = forEachPkgs (pkgs: { default = pkgs.mkShell { packages = with pkgs; [ @@ -32,7 +31,6 @@ }; }); - # library contents nixosModules.default = self.nixosModules.syncthing; nixosModules.syncthing = import ./lib/nixos-module.nix; @@ -51,7 +49,6 @@ ); }; - # example configuration nixosConfigurations = { default = nixpkgs.lib.nixosSystem { specialArgs = {inherit self;};