Skip to content

Commit

Permalink
Merge branch 'master' of github.com:mrjones2014/dotfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjones2014 committed Nov 19, 2023
2 parents 8984887 + 40893be commit 1df7027
Show file tree
Hide file tree
Showing 9 changed files with 259 additions and 21 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/check-flake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v23
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: Check Nix flake inputs
uses: DeterminateSystems/flake-checker-action@v5
with:
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/update-flake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v23
- uses: cachix/cachix-action@v12
with:
name: nix-community
- name: add nix-community cache
run: cachix use nix-community
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: update flake.lock
run: nix flake update
- name: Create Pull Request
Expand Down
233 changes: 222 additions & 11 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
url = "github:neovim/neovim?dir=contrib";
inputs.nixpkgs.follows = "nixpkgs";
};
arkenfox.url = "github:dwarfmaster/arkenfox-nixos";
};

outputs = inputs@{ self, nixpkgs, home-manager, ... }: {
Expand Down
1 change: 1 addition & 0 deletions home-manager/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ in {
};

imports = [
# ./modules/arkenfox.nix # TODO figure out how to load the arkenfox flake module
./modules/nvim.nix
./modules/fish.nix
./modules/fzf.nix
Expand Down
26 changes: 26 additions & 0 deletions home-manager/modules/arkenfox.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
programs.firefox = {
enable = true;
arkenfox = {
enable = true;
version = "118.0";
};

profiles.Default.arkenfox = {
enable = true;
"0000".enable = true;
"0100".enable = true;
"0200".enable = true;
"0300".enable = true;
"0400".enable = true;
"0600".enable = true;
"0800".enable = true;
"0900".enable = true;
"1200".enable = true;
"1600".enable = true;
"2600".enable = true;
"2700".enable = true;
"2800".enable = true;
};
};
}
1 change: 1 addition & 0 deletions nvim/lua/my/configure/heirline/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ return {
shared.FileIcon('black'),
wb.UniqueFilename,
wb.Diagnostics,
shared.Trunc,
wb.Navic,
},
statuscolumn = { ---@diagnostic disable-line:missing-fields
Expand Down
4 changes: 4 additions & 0 deletions nvim/lua/my/configure/heirline/shared.lua
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,8 @@ function M.Diagnostics(is_winbar, bg)
)
end

M.Trunc = {
provider = '%<',
}

return M
3 changes: 0 additions & 3 deletions nvim/lua/my/configure/heirline/winbar.lua
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,6 @@ M.Navic = {
return string.format(' %s', require('nvim-navic').get_location())
end,
hl = { bg = 'bg_statusline' },
{
provider = '%<',
},
}

return M

0 comments on commit 1df7027

Please sign in to comment.