Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
srid committed May 4, 2023
1 parent f4d3500 commit bd6aa60
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
# https://nix-community.github.io/home-manager/index.html#sec-usage-configuration
{ pkgs, ... }: {
imports = [
# Add your home-manager modules here.
# This loads ./home/neovim/default.nix - neovim configured for Haskell dev, and other things.
./home/neovim
# Add more of your home-manager modules here.
];

# Nix packages to install to $HOME
Expand All @@ -15,8 +16,8 @@
nix-output-monitor # https://github.com/maralorn/nix-output-monitor
nix-info
cachix
lazygit
ripgrep
lazygit # Better git UI
ripgrep # Better `grep`
nil # Nix language server
];

Expand Down
8 changes: 4 additions & 4 deletions home/neovim/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{ pkgs, ... }:
{
imports = [
./neovim/telescope.nix
./neovim/coc.nix
./neovim/haskell.nix
./telescope.nix
./coc.nix
./haskell.nix
# which-key must be the last import for it to recognize the keybindings of
# previous imports.
./neovim/which-key.nix
./which-key.nix
];
programs.neovim = {
enable = true;
Expand Down

0 comments on commit bd6aa60

Please sign in to comment.