dotfiles/home-manager/common.nix
2024-04-13 22:25:39 -04:00

110 lines
2.4 KiB
Nix

{ config, pkgs, ... }:
{
# This value determines the Home Manager release that your configuration is
# compatible with. This helps avoid breakage when a new Home Manager release
# introduces backwards incompatible changes.
#
# You should not change this value, even if you update Home Manager. If you do
# want to update the value, then make sure to first check the Home Manager
# release notes.
home.stateVersion = "23.05"; # Please read the comment before changing.
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = with pkgs; [
nil
nixfmt
devenv
direnv
ripgrep
fd
sd
bat
just
tokei
mermaid-cli
yazi
jq
# System
ansible
opentofu
pass
];
home.file = {
".config/doom".source = ../doom;
".config/nvim".source = ../nvim;
};
# You can also manage environment variables but you will have to manually
# source
#
# ~/.nix-profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# /etc/profiles/per-user/digyx/etc/profile.d/hm-session-vars.sh
#
# if you don't want to manage your shell through Home Manager.
home.sessionVariables = {
# EDITOR = "emacs";
};
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
# Shell configurations
programs.fish = {
enable = true;
shellInit = ''
fish_add_path $HOME/.emacs.d/bin/
fish_add_path $HOME/.cargo/bin/
'';
loginShellInit = ''
set -x XDG_DATA_DIRS $HOME/.nix-profile/share:$XDG_DATA_DIRS
set -x DIRENV_LOG_FORMAT
set -x SSH_AUTH_SOCK /run/user/1000/keyring/ssh
'';
interactiveShellInit = ''
set fish_greeting
'';
functions = { update = "nix-channel --update && home-manager switch"; };
};
programs.mise.enable = true;
programs.starship.enable = true;
programs.zoxide.enable = true;
# Programming configurations
programs.git = {
enable = true;
userName = "Roman Godmaire";
userEmail = "godmaire@twilit.io";
delta = {
enable = true;
options = { side-by-side = true; };
};
extraConfig = { init = { defaultBranch = "main"; }; };
};
programs.emacs = {
enable = true;
package = pkgs.emacs29-pgtk;
extraPackages = epkgs: with epkgs; [ pdf-tools vterm ];
};
programs.neovim = {
enable = true;
defaultEditor = true;
};
}