Compare commits
1 commit
3976d6793b
...
8415b17a91
Author | SHA1 | Date | |
---|---|---|---|
8415b17a91 |
3 changed files with 24 additions and 37 deletions
19
.vscode/settings.json
vendored
19
.vscode/settings.json
vendored
|
@ -5,8 +5,7 @@
|
||||||
"**/ansible/**/*.yaml": "ansible",
|
"**/ansible/**/*.yaml": "ansible",
|
||||||
"**/ansible/**/*.sops.yaml": "yaml",
|
"**/ansible/**/*.sops.yaml": "yaml",
|
||||||
"**/ansible/**/inventory/**/*.yaml": "yaml",
|
"**/ansible/**/inventory/**/*.yaml": "yaml",
|
||||||
"**/kubernetes/**/*.sops.toml": "plaintext",
|
"**/kubernetes/**/*.sops.toml": "plaintext"
|
||||||
"*.hujson": "jsonc"
|
|
||||||
},
|
},
|
||||||
"material-icon-theme.folders.associations": {
|
"material-icon-theme.folders.associations": {
|
||||||
".taskfiles": "utils",
|
".taskfiles": "utils",
|
||||||
|
@ -21,21 +20,13 @@
|
||||||
"kube-system": "kubernetes",
|
"kube-system": "kubernetes",
|
||||||
"monitoring": "event",
|
"monitoring": "event",
|
||||||
"networking": "connection",
|
"networking": "connection",
|
||||||
"rook-ceph": "dump"
|
"rook-ceph": "dump",
|
||||||
},
|
},
|
||||||
"yaml.schemaStore.enable": true,
|
"yaml.schemaStore.enable": true,
|
||||||
"yaml.schemas": {
|
"yaml.schemas": {
|
||||||
"ansible": "ansible/**/*.yaml",
|
"ansible": "ansible/**/*.yaml",
|
||||||
"kubernetes": "kubernetes/**/*.yaml"
|
"kubernetes": "kubernetes/**/*.yaml"
|
||||||
},
|
},
|
||||||
"json.schemas": [
|
|
||||||
{
|
|
||||||
"fileMatch": ["*.hujson"],
|
|
||||||
"schema": {
|
|
||||||
"allowTrailingCommas": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"editor.fontFamily": "FiraCode Nerd Font",
|
"editor.fontFamily": "FiraCode Nerd Font",
|
||||||
"editor.fontLigatures": true,
|
"editor.fontLigatures": true,
|
||||||
"editor.bracketPairColorization.enabled": true,
|
"editor.bracketPairColorization.enabled": true,
|
||||||
|
@ -44,7 +35,9 @@
|
||||||
"editor.guides.highlightActiveBracketPair": true,
|
"editor.guides.highlightActiveBracketPair": true,
|
||||||
"editor.hover.delay": 1500,
|
"editor.hover.delay": 1500,
|
||||||
"editor.stickyScroll.enabled": false,
|
"editor.stickyScroll.enabled": false,
|
||||||
"editor.rulers": [100],
|
"editor.rulers": [
|
||||||
|
100
|
||||||
|
],
|
||||||
"explorer.autoReveal": false,
|
"explorer.autoReveal": false,
|
||||||
"files.trimTrailingWhitespace": true,
|
"files.trimTrailingWhitespace": true,
|
||||||
"ansible.python.interpreterPath": "/usr/bin/python3",
|
"ansible.python.interpreterPath": "/usr/bin/python3",
|
||||||
|
@ -53,5 +46,5 @@
|
||||||
"prettier.quoteProps": "preserve",
|
"prettier.quoteProps": "preserve",
|
||||||
"[jsonc]": {
|
"[jsonc]": {
|
||||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,8 +35,8 @@ spec:
|
||||||
skipRecheck: true,
|
skipRecheck: true,
|
||||||
sonarr: ["http://sonarr.default.svc.cluster.local/?apikey={{ .SONARR_API_KEY }}"],
|
sonarr: ["http://sonarr.default.svc.cluster.local/?apikey={{ .SONARR_API_KEY }}"],
|
||||||
torrentDir: "/qbittorrent/qBittorrent/BT_backup",
|
torrentDir: "/qbittorrent/qBittorrent/BT_backup",
|
||||||
torznab: []
|
// torznab: []
|
||||||
/* torznab: [
|
torznab: [
|
||||||
6, // ANT
|
6, // ANT
|
||||||
8, // BLU
|
8, // BLU
|
||||||
9, // TL
|
9, // TL
|
||||||
|
@ -44,7 +44,6 @@ spec:
|
||||||
12, // FNP
|
12, // FNP
|
||||||
14, // TD
|
14, // TD
|
||||||
].map(i => `http://prowlarr.default.svc.cluster.local/$${i}/api?apikey={{ .PROWLARR_API_KEY }}`),
|
].map(i => `http://prowlarr.default.svc.cluster.local/$${i}/api?apikey={{ .PROWLARR_API_KEY }}`),
|
||||||
*/
|
|
||||||
};
|
};
|
||||||
dataFrom:
|
dataFrom:
|
||||||
- extract:
|
- extract:
|
||||||
|
|
|
@ -3,11 +3,6 @@
|
||||||
pkgs.mkShell {
|
pkgs.mkShell {
|
||||||
# Enable experimental features without having to specify the argument
|
# Enable experimental features without having to specify the argument
|
||||||
NIX_CONFIG = "experimental-features = nix-command flakes";
|
NIX_CONFIG = "experimental-features = nix-command flakes";
|
||||||
shellHook = ''
|
|
||||||
export TMP=$(mktemp -d "/tmp/nix-shell-XXXXXX")
|
|
||||||
export TEMP=$TMP
|
|
||||||
export TMPDIR=$TMP
|
|
||||||
'';
|
|
||||||
|
|
||||||
nativeBuildInputs = with pkgs; [
|
nativeBuildInputs = with pkgs; [
|
||||||
fluxcd
|
fluxcd
|
||||||
|
|
Loading…
Reference in a new issue