From a3bda5c49b034e5499ba24afc13a45be528a645e Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 9 Aug 2021 13:29:29 +0200 Subject: README: use latest krops version in example Signed-off-by: Matthias Beyer --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index d696c5e..d11e315 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,8 @@ Create a file named `krops.nix` (name doesn't matter) with following content: let krops = (import {}).fetchgit { url = https://cgit.krebsco.de/krops/; - rev = "v1.17.0"; - sha256 = "150jlz0hlb3ngf9a1c9xgcwzz1zz8v2lfgnzw08l3ajlaaai8smd"; + rev = "v1.25.0"; + sha256 = "07mg3iaqjf1w49vmwfchi7b1w55bh7rvsbgicp2m47gnj9alwdb6"; }; lib = import "${krops}/lib"; -- cgit v1.2.3 From d80cb74c7400962b08e77ff06153ace419693505 Mon Sep 17 00:00:00 2001 From: lassulus Date: Sat, 27 Mar 2021 20:25:31 +0100 Subject: runShell/writeCommand: add allocateTTY argument --- README.md | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'README.md') diff --git a/README.md b/README.md index d11e315..a412ee1 100644 --- a/README.md +++ b/README.md @@ -185,6 +185,10 @@ pkgs.krops.writeCommand "deploy-with-swap" { [see `writeDeploy`](#writeDeploy) +### `allocateTTY` (optional, defaults to false) + +whether the ssh session should do a pseudo-terminal allocation. +sets `-t` on the ssh command. ## Source Types -- cgit v1.2.3 From bdce88820baac0e9ebc5c660a8b1d009c14c357f Mon Sep 17 00:00:00 2001 From: tv Date: Tue, 26 Oct 2021 13:06:03 +0200 Subject: README: talk about systems --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index a412ee1..74b6c4b 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ krops is a lightweight toolkit to deploy NixOS systems, remotely or locally. ## Some Features - store your secrets in [password store](https://www.passwordstore.org/) -- build your system remotely +- build your systems remotely - minimal overhead (it's basically just `nixos-rebuild switch`!) - run from custom nixpkgs branch/checkout/fork -- cgit v1.2.3 From 53eda9cafee46a506053099c6ced393aa5675f86 Mon Sep 17 00:00:00 2001 From: tv Date: Tue, 26 Oct 2021 13:07:07 +0200 Subject: README: transfered -> transferred --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index 74b6c4b..e9b15b3 100644 --- a/README.md +++ b/README.md @@ -210,7 +210,7 @@ using [`rsync`](https://rsync.samba.org/). Supported attributes: * `path` - - absolute path to files that should by transfered + absolute path to files that should by transferred. * `useChecksum` (optional) - boolean that controls whether file contents should be checked to decide -- cgit v1.2.3 From 6ef8900af4bca2901f00c718e3ac8ba457348451 Mon Sep 17 00:00:00 2001 From: tv Date: Tue, 26 Oct 2021 13:05:49 +0200 Subject: populate file: admit derivations --- README.md | 2 ++ 1 file changed, 2 insertions(+) (limited to 'README.md') diff --git a/README.md b/README.md index e9b15b3..d868768 100644 --- a/README.md +++ b/README.md @@ -217,6 +217,8 @@ Supported attributes: whether a file has changed. This is useful when `path` points at files with mangled timestamps, e.g. the Nix store. + The default value is `true` if `path` is a derivation, and `false` otherwise. + * `filters` (optional) List of filters that should be passed to [`rsync`](https://rsync.samba.org/). Filters are specified as attribute sets with the attributes `type` and -- cgit v1.2.3