Skip to content

Commit

Permalink
better actions, fixed build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
nyadiia committed Oct 23, 2024
1 parent 1fe17ae commit 107f25b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/flake-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check Nix flake Nixpkgs inputs
uses: DeterminateSystems/flake-checker-action@main
uses: DeterminateSystems/flake-checker-action@v9
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v14
- name: Check everything
run: nix flake check . --all-systems
2 changes: 1 addition & 1 deletion modules/system.nix
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
EDITOR = "nvim";
VISUAL = "nvim";
}
++ (lib.mkIf (config.custom.deviceType != "server")) {
// (lib.mkIf (config.custom.deviceType != "server")) {
SSH_ASKPASS = "${pkgs.seahorse}/libexec/seahorse/ssh-askpass";
};
};
Expand Down
8 changes: 4 additions & 4 deletions packages/nixvim/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
nixfmt-rfc-style
typstyle
];
extraPlugins = with pkgs.vimPlugins; [
gruvbox-material-nvim
quick-scope
];
colorscheme = "gruvbox-material";
extraConfigLuaPre = ''
require('gruvbox-material').setup({
Expand Down Expand Up @@ -89,10 +93,6 @@
);
globals.mapleader = " ";
plugins = {
extraPlugins = with pkgs.vimPlugins; [
gruvbox-material-nvim
quick-scope
];

barbar.enable = true;
cmp-nvim-lsp.enable = true;
Expand Down

0 comments on commit 107f25b

Please sign in to comment.