manager/hosts/sparrow.json

77 lines
1.7 KiB
JSON
Raw Normal View History

2024-09-10 08:41:31 +01:00
{
2024-09-11 08:45:37 +01:00
"bashProfile": {
"manage": true,
"filename": ".bashrc",
2024-09-11 08:45:37 +01:00
"commands": [
{
"command": "shopt -s histappend",
"description": "Append to the history file, don't overwrite it."
},
{
"command": "set -o vi",
"description": "Activate vi mode."
},
{
"command": "eval \"$(SHELL=/bin/sh lesspipe.sh)\"",
"description": "Make less more friendly for non-text input files"
2024-09-12 06:11:31 +01:00
},
{
"command": "source /run/current-system/sw/share/bash-completion/completions/git",
2024-09-12 06:29:47 +01:00
"description": "Enable bash completion for git"
2024-09-12 06:11:31 +01:00
},
{
"command": "complete -o bashdefault -o default -o nospace -F __git_wrap__git_main g",
"description": "Enable bash completion for the g alias"
2024-09-11 08:45:37 +01:00
}
],
2024-09-12 06:55:37 +01:00
"environmentVariables": {
"GPG_TTY": "$(tty)"
},
2024-09-11 08:45:37 +01:00
"sessionPaths": [
{
"path": "Applications",
"description": "the AppImage directory"
},
{
"path": ".local/goblin",
"description": "the directory of go binaries"
2024-09-11 08:45:37 +01:00
}
]
2024-09-11 08:45:37 +01:00
},
"directories": {
"useDefaultDirectories": true,
"includeXDGDirectories": true,
"additionalDirectories": [
".local/bin",
".local/data/gnupg",
".local/data/go",
2024-09-11 12:30:16 +01:00
".local/goblin",
".local/opt",
2024-09-11 08:45:37 +01:00
".local/state/bash",
".local/state/less",
"Docker",
"Laboratory",
"Notes",
"Projects"
]
},
2024-09-10 08:41:31 +01:00
"git": {
"gpgSign": true,
2024-09-10 08:41:31 +01:00
"user": {
"email": "daangling@gmail.com",
"name": "Dan Anglin",
"signingKey": "DC7C2989B0E30FEA"
2024-09-10 08:41:31 +01:00
}
},
"managedConfigurations": [
"foot",
"git",
"lf",
"logrotate",
"river",
"tmux",
"user-dirs.dirs",
"user-dirs.locale"
]
2024-09-10 08:41:31 +01:00
}