Update template and added README

This commit is contained in:
Eric Renfro 2023-12-26 15:43:14 -05:00
parent 696466b3d5
commit e87e2295e6
Signed by: psi-jack
SSH Key Fingerprint: SHA256:1TKB8Z257L8EHK8GWNxKgMhD8a+FAR+f+j3nnlcuNVM
3 changed files with 18 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{{- $personal := promptBool "Personal?" -}}{{/* true if this is a personal machine */}}
{{- if eq $personal true -}}
{{- $email = "psi-jack@linux-help.org" -}}
{{- $email := promptString "Email?" -}}
{{- $work := false -}}
{{- else -}}
{{- $email = promptString "Email?" -}}

5
.chezmoiexternal.yaml Normal file
View 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
View 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
```