From df89ceed3954b026c9521524aa07f682cddd97a8 Mon Sep 17 00:00:00 2001 From: practicalswift Date: Tue, 4 Aug 2020 13:32:06 +0000 Subject: [PATCH] Fix typos --- README.md | 2 +- docs/usage.md | 2 +- modules/bitcoind.nix | 2 +- modules/liquid.nix | 2 +- modules/secrets/secrets.nix | 2 +- test/test.nix | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index b52a215..04e4f36 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ See [install.md](docs/install.md) for a detailed tutorial. Security --- -* **Simplicity:** Only services you select in `configuration.nix` and their dependencies are installed, packages and dependencies are [pinned](pkgs/nixpkgs-pinned.nix), most packages are built from the [nixos stable channel](https://github.com/NixOS/nixpkgs-channels/tree/nixos-19.03), with a few exceptions that are built from the nixpkgs unstable channel, builds happen in a [sandboxed environment](https://nixos.org/nix/manual/), code is continiously reviewed and refined. +* **Simplicity:** Only services you select in `configuration.nix` and their dependencies are installed, packages and dependencies are [pinned](pkgs/nixpkgs-pinned.nix), most packages are built from the [nixos stable channel](https://github.com/NixOS/nixpkgs-channels/tree/nixos-19.03), with a few exceptions that are built from the nixpkgs unstable channel, builds happen in a [sandboxed environment](https://nixos.org/nix/manual/), code is continuously reviewed and refined. * **Integrity:** Nix package manager, NixOS and packages can be built from source to reduce reliance on binary caches, nix-bitcoin merge commits are signed, all commits are approved by multiple nix-bitcoin developers, upstream packages are cryptographically verified where possible, we use this software ourselves. * **Principle of Least Privilege:** Services operate with least privileges; they each have their own user and are restricted further with [systemd options](modules/nix-bitcoin-services.nix), there's a non-root user *operator* to interact with the various services. * **Defense-in-depth:** nix-bitcoin is built with a [hardened kernel](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/profiles/hardened.nix) by default, services are confined through discretionary access control, Linux namespaces, and seccomp-bpf with continuous improvements. diff --git a/docs/usage.md b/docs/usage.md index 5f54222..88a0f4e 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -48,7 +48,7 @@ Connect to spark-wallet ``` journalctl -eu spark-wallet ``` - Note: The qr code might have issues scanning if you have a light terminal theme. Try setting it to dark or highlightning the entire output to invert the colors. + Note: The qr code might have issues scanning if you have a light terminal theme. Try setting it to dark or highlighting the entire output to invert the colors. 5. Connect to spark-wallet android app diff --git a/modules/bitcoind.nix b/modules/bitcoind.nix index c1bc1e7..6d8c7e5 100644 --- a/modules/bitcoind.nix +++ b/modules/bitcoind.nix @@ -136,7 +136,7 @@ in { }; })); description = '' - RPC user information for JSON-RPC connnections. + RPC user information for JSON-RPC connections. ''; }; }; diff --git a/modules/liquid.nix b/modules/liquid.nix index a655b0a..bf93d30 100644 --- a/modules/liquid.nix +++ b/modules/liquid.nix @@ -117,7 +117,7 @@ in { }; type = with types; loaOf (submodule rpcUserOpts); description = '' - RPC user information for JSON-RPC connnections. + RPC user information for JSON-RPC connections. ''; }; }; diff --git a/modules/secrets/secrets.nix b/modules/secrets/secrets.nix index b066393..5358bae 100644 --- a/modules/secrets/secrets.nix +++ b/modules/secrets/secrets.nix @@ -18,7 +18,7 @@ in deployment.secretsDir = mkOption { type = types.path; description = '' - Directory of local secrets that are transfered to the nix-bitcoin node on deployment + Directory of local secrets that are transferred to the nix-bitcoin node on deployment ''; }; diff --git a/test/test.nix b/test/test.nix index 640820c..221d83d 100644 --- a/test/test.nix +++ b/test/test.nix @@ -12,7 +12,7 @@ import ./make-test.nix rec { hardened = { imports = [ ]; - security.allowUserNamespaces = true; # reenable disabled option + security.allowUserNamespaces = true; # re-enable disabled option }; machine = { pkgs, lib, ... }: with lib; {