Skip to content

Commit

Permalink
link fish config files
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Feb 21, 2024
1 parent cb63f89 commit 6d453f3
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@ jobs:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Cache Homebrew directory
if: runner.os == 'ubuntu-latest'
uses: actions/cache@v2
with:
path: /home/linuxbrew/.linuxbrew
key: ${{ runner.os }}-dotfiles-brew
restore-keys: |
${{ runner.os }}-dotfiles-brew-
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- uses: tsirysndr/setup-envhub@v1
Expand All @@ -28,6 +36,9 @@ jobs:
shell: bash -i -e -o pipefail {0}
run: |
ls -la ~/.bashrc
ls -la ~/.teller.yml
ls -la ~/.config/fish/config.fish
ls -la ~/.config/fish/fish_variables
hello
type nix
nix --version
Expand Down
13 changes: 13 additions & 0 deletions envhub.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ file ".bashrc" {
source = "dotfiles/.bashrc"
}

file ".config/fish/config.fish" {
source = "dotfiles/.config/fish/config.fish"
}

file ".config/fish/fish_variables" {
source = "dotfiles/.config/fish/fish_variables"
}

file ".teller.yml" {
source = "dotfiles/.teller.yml"
}


secrets = ["CLOUDFLARE_ROOT_KEY"]

homebrew {
Expand Down

0 comments on commit 6d453f3

Please sign in to comment.