-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* mev-boost-prysm: Remove because of upstream deprecation. * Introduce nixpkgs-23.11 and pkgs2311. When we bump nixpkgs to 24.05 some packages need to stay behind, as they don't compile with 24.05. * ssvnode: Pin to 23.11, as ssvnode will not compile with 24.05. * sedge: Pin to nixpkgs-23.11 as it does not compile with nixpkgs-24.05 * rotki-bin: Pin to 23.11 as it does not compile with 24.05. * eth-validator-watcher: Pin to 23.11, as it won't compile with 24.05. * Make overlay definition fail gracefully for unknown systems. nixpkgs-24.05, even when system = "x86_64-linux" will instantiate a nixpkgs configuration for i686-linux. I believe that this is because of the stdenv bootstrapping in <nixpkgs/pkgs/stdenv/linux/default.nix> references an i686-linux version of glibc. Because modules/testing.nix references the overlay definition, and because of the bootstrapping logic above, we need to make the flake overlay definition to handle unknown systems more gracefully. Return an empty set, in case we don't know the system. * Move to nixpkgs-24.05. * flake.lock update * Remove mdDoc treewide, as it is a deprecated option * reth: Fix broken syntax. * geth: update vendorHash
- Loading branch information
1 parent
d3d8046
commit 5e1b6cd
Showing
29 changed files
with
314 additions
and
317 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ lib: | |
with lib; { | ||
passwordFile = mkOption { | ||
type = types.str; | ||
description = lib.mdDoc '' | ||
description = '' | ||
Read the repository password from a file. | ||
''; | ||
example = "/etc/nixos/restic-password"; | ||
|
@@ -12,7 +12,7 @@ with lib; { | |
environmentFile = mkOption { | ||
type = with types; nullOr str; | ||
default = null; | ||
description = lib.mdDoc '' | ||
description = '' | ||
file containing the credentials to access the repository, in the | ||
format of an EnvironmentFile as described by systemd.exec(5) | ||
''; | ||
|
@@ -21,7 +21,7 @@ with lib; { | |
rcloneOptions = mkOption { | ||
type = with types; nullOr (attrsOf (oneOf [str bool])); | ||
default = null; | ||
description = lib.mdDoc '' | ||
description = '' | ||
Options to pass to rclone to control its behavior. | ||
See <https://rclone.org/docs/#options> for | ||
available options. When specifying option names, strip the | ||
|
@@ -38,7 +38,7 @@ with lib; { | |
rcloneConfig = mkOption { | ||
type = with types; nullOr (attrsOf (oneOf [str bool])); | ||
default = null; | ||
description = lib.mdDoc '' | ||
description = '' | ||
Configuration for the rclone remote being used for backup. | ||
See the remote's specific options under rclone's docs at | ||
<https://rclone.org/docs/>. When specifying | ||
|
@@ -62,7 +62,7 @@ with lib; { | |
rcloneConfigFile = mkOption { | ||
type = with types; nullOr path; | ||
default = null; | ||
description = lib.mdDoc '' | ||
description = '' | ||
Path to the file containing rclone configuration. This file | ||
must contain configuration for the remote specified in this backup | ||
set and also must be readable by root. Options set in | ||
|
@@ -74,7 +74,7 @@ with lib; { | |
repository = mkOption { | ||
type = with types; nullOr str; | ||
default = null; | ||
description = lib.mdDoc '' | ||
description = '' | ||
repository to backup to. | ||
''; | ||
example = "sftp:[email protected]:/backups/my-bucket"; | ||
|
@@ -83,7 +83,7 @@ with lib; { | |
repositoryFile = mkOption { | ||
type = with types; nullOr path; | ||
default = null; | ||
description = lib.mdDoc '' | ||
description = '' | ||
Path to the file containing the repository location to backup to. | ||
''; | ||
}; | ||
|
@@ -95,7 +95,7 @@ with lib; { | |
"keystore" | ||
"**/nodekey" | ||
]; | ||
description = lib.mdDoc '' | ||
description = '' | ||
Patterns to exclude when backing up. See | ||
https://restic.readthedocs.io/en/latest/040_backup.html#excluding-files for | ||
details on syntax. | ||
|
@@ -110,7 +110,7 @@ with lib; { | |
extraOptions = mkOption { | ||
type = types.listOf types.str; | ||
default = []; | ||
description = lib.mdDoc '' | ||
description = '' | ||
Extra extended options to be passed to the restic --option flag. | ||
''; | ||
example = [ | ||
|
Oops, something went wrong.