add charm packages, fix neovim tree height

This commit is contained in:
Noah Masur 2022-09-24 14:26:02 +00:00
parent 9b0dcaba9f
commit ae90b1041d
3 changed files with 13 additions and 1 deletions

View File

@ -102,7 +102,6 @@ M.packer = function(use)
}, },
view = { view = {
width = 30, width = 30,
height = 30,
hide_root_folder = false, hide_root_folder = false,
side = "left", side = "left",
mappings = { mappings = {

12
modules/shell/charm.nix Normal file
View File

@ -0,0 +1,12 @@
{ config, pkgs, ... }: {
home-manager.users.${config.user} = {
home.packages = with pkgs;
[
skate # Key-value store
];
};
}

View File

@ -1,6 +1,7 @@
{ ... }: { { ... }: {
imports = [ imports = [
./age.nix ./age.nix
./charm.nix
./direnv.nix ./direnv.nix
./fish ./fish
./fzf.nix ./fzf.nix