Compare commits
5
Commits
da24623dca
..
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5987036389 | ||
|
|
75ae00ce12 | ||
|
|
a4e2eadbe9 | ||
|
|
06fb51ab5e | ||
|
|
28183fd943 |
@@ -55,6 +55,8 @@ hosts:
|
|||||||
configs: {}
|
configs: {}
|
||||||
# Termux (application de terminal pour android)
|
# Termux (application de terminal pour android)
|
||||||
termux-debian:
|
termux-debian:
|
||||||
|
packages:
|
||||||
|
- apt:zsh
|
||||||
users:
|
users:
|
||||||
root:
|
root:
|
||||||
toolboxes:
|
toolboxes:
|
||||||
@@ -65,6 +67,8 @@ hosts:
|
|||||||
- terminal
|
- terminal
|
||||||
- dev-tools
|
- dev-tools
|
||||||
termux-ubuntu:
|
termux-ubuntu:
|
||||||
|
packages:
|
||||||
|
- apt:zsh
|
||||||
users:
|
users:
|
||||||
root:
|
root:
|
||||||
toolboxes:
|
toolboxes:
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ tools:
|
|||||||
- zoxide # Quickly jump to previouously visited directories
|
- zoxide # Quickly jump to previouously visited directories
|
||||||
- broot # Navigate easily inside the file system
|
- broot # Navigate easily inside the file system
|
||||||
- glow # Render markdown on the CLI
|
- glow # Render markdown on the CLI
|
||||||
|
- cargo-binstall # Needed for broot
|
||||||
dev-tools:
|
dev-tools:
|
||||||
- jq
|
- jq
|
||||||
- yq
|
- yq
|
||||||
@@ -33,7 +34,6 @@ tools:
|
|||||||
- node
|
- node
|
||||||
- go
|
- go
|
||||||
- rust
|
- rust
|
||||||
- cargo-binstall
|
|
||||||
devops:
|
devops:
|
||||||
- docker-cli
|
- docker-cli
|
||||||
- podman
|
- podman
|
||||||
@@ -54,6 +54,7 @@ tools:
|
|||||||
- claude
|
- claude
|
||||||
- gemini-cli
|
- gemini-cli
|
||||||
- codex
|
- codex
|
||||||
|
- copilot
|
||||||
|
|
||||||
# # Password managers
|
# # Password managers
|
||||||
# # vault = "latest"
|
# # vault = "latest"
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#
|
||||||
|
# Ce fichier est généré automatiquement par l'outil chezmoi.
|
||||||
|
# Préférez apporter vos modification depuis chezmoi que directement ici.
|
||||||
|
#
|
||||||
@@ -41,3 +41,15 @@
|
|||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
|
{{/* Host specific */}}
|
||||||
|
{{- $hostname := output "hostname" | trim -}}
|
||||||
|
{{- $currentHost := index .hosts $hostname -}}
|
||||||
|
{{- if $currentHost }}
|
||||||
|
{{- if hasKey $currentHost "packages" }}
|
||||||
|
# Paquets personnalisés pour l'hôte {{ $hostname }}
|
||||||
|
{{- range $currentHost.packages }}
|
||||||
|
"{{- . }}" = "latest"
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
# Ce fichier est généré automatiquement par l'outil chezmoi
|
{{ includeTemplate "chezmoi-managed-header" . }}
|
||||||
# Préférez apporter vos modification depuis chezmoi que directement ici
|
|
||||||
|
|
||||||
[settings]
|
[settings]
|
||||||
experimental = true
|
experimental = true
|
||||||
@@ -10,7 +9,7 @@ binstall = true
|
|||||||
######################### [ Bootstrap ] #########################
|
######################### [ Bootstrap ] #########################
|
||||||
|
|
||||||
[bootstrap.packages]
|
[bootstrap.packages]
|
||||||
{{ template "mise-bootstrap-packages" . }}
|
{{ includeTemplate "mise-bootstrap-packages" . }}
|
||||||
|
|
||||||
# coreutils grep less
|
# coreutils grep less
|
||||||
# tig
|
# tig
|
||||||
@@ -37,7 +36,7 @@ neovim = "latest"
|
|||||||
tree-sitter = "latest"
|
tree-sitter = "latest"
|
||||||
|
|
||||||
# Tools automated with chezmoi
|
# Tools automated with chezmoi
|
||||||
{{ template "mise-tools" . }}
|
{{ includeTemplate "mise-tools" . }}
|
||||||
|
|
||||||
# Password managers
|
# Password managers
|
||||||
# vault = "latest"
|
# vault = "latest"
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# Déclencheur automatique : ce script se réexécutera si le config.toml de mise change.
|
# Déclencheur automatique : ce script se réexécutera si le config.toml de mise change,
|
||||||
# hash: {{ include "private_dot_config/mise/config.toml.tmpl" | sha256sum }}
|
# y compris quand seules les données (.chezmoidata) utilisées par ses templates changent.
|
||||||
|
# hash: {{ includeTemplate "private_dot_config/mise/config.toml.tmpl" . | sha256sum }}
|
||||||
|
|
||||||
export PATH="${HOME}/.local/bin:$PATH"
|
export PATH="${HOME}/.local/bin:$PATH"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user