nix: nil && nixfmt

This commit is contained in:
Roman Godmaire 2024-04-13 10:45:45 -04:00
parent bdded85026
commit acd49eef51

View file

@ -13,6 +13,9 @@
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = with pkgs; [
nil
nixfmt
devenv
direnv
@ -82,9 +85,7 @@
set fish_greeting
'';
functions = {
update = "nix-channel --update && home-manager switch";
};
functions = { update = "nix-channel --update && home-manager switch"; };
};
programs.mise.enable = true;
@ -99,26 +100,17 @@
delta = {
enable = true;
options = {
side-by-side = true;
};
options = { side-by-side = true; };
};
extraConfig = {
init = {
defaultBranch = "main";
};
};
extraConfig = { init = { defaultBranch = "main"; }; };
};
programs.emacs = {
enable = true;
package = pkgs.emacs29-pgtk;
extraPackages = epkgs: with epkgs; [
pdf-tools
vterm
];
extraPackages = epkgs: with epkgs; [ pdf-tools vterm ];
};
programs.neovim = {