Update template and added README
This commit is contained in:
parent
696466b3d5
commit
e87e2295e6
3 changed files with 18 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
{{- $personal := promptBool "Personal?" -}}{{/* true if this is a personal machine */}}
|
{{- $personal := promptBool "Personal?" -}}{{/* true if this is a personal machine */}}
|
||||||
{{- if eq $personal true -}}
|
{{- if eq $personal true -}}
|
||||||
{{- $email = "psi-jack@linux-help.org" -}}
|
{{- $email := promptString "Email?" -}}
|
||||||
{{- $work := false -}}
|
{{- $work := false -}}
|
||||||
{{- else -}}
|
{{- else -}}
|
||||||
{{- $email = promptString "Email?" -}}
|
{{- $email = promptString "Email?" -}}
|
||||||
|
|
5
.chezmoiexternal.yaml
Normal file
5
.chezmoiexternal.yaml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
".local/share/fonts/hack":
|
||||||
|
type: archive
|
||||||
|
url: https://github.com/ryanoasis/nerd-fonts/releases/download/v3.1.1/Hack.zip
|
||||||
|
refreshPeriod: 169h
|
||||||
|
exact: false
|
12
README.md
Normal file
12
README.md
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
# dotfiles
|
||||||
|
|
||||||
|
This repo contains the configuration to setup my machines. This is using [Chezmoi](https://chezmoi.io), the dotfile manager to setup the install.
|
||||||
|
|
||||||
|
This automated setup is currently only configured for Fedora machines.
|
||||||
|
|
||||||
|
## How to run
|
||||||
|
|
||||||
|
```shell
|
||||||
|
export GITHUB_USERNAME=erenfro
|
||||||
|
sh -c "$(curl -fsLS get.chezmoi.io)" -- init --apply $GITHUB_USERNAME
|
||||||
|
```
|
Loading…
Reference in a new issue