nix-config/modules/home.nix

115 lines
2.7 KiB
Nix
Raw Normal View History

{ pkgs, lib, config, home-manager, nix-darwin, inputs, ... }: {
# Can probably be removed when this is resolved:
# https://github.com/nix-community/home-manager/issues/1341
home.activation = {
2022-09-19 14:23:37 +00:00
copyApplications =
let
apps = pkgs.buildEnv {
name = "home-manager-applications";
paths = config.home.packages;
pathsToLink = "/Applications";
};
in
lib.hm.dag.entryAfter [ "writeBoundary" ] ''
baseDir="$HOME/Applications/Home Manager Apps"
if [ -d "$baseDir" ]; then
rm -rf "$baseDir"
fi
mkdir -p "$baseDir"
for appFile in ${apps}/Applications/*; do
target="$baseDir/$(basename "$appFile")"
$DRY_RUN_CMD cp ''${VERBOSE_ARG:+-v} -fHRL "$appFile" "$baseDir"
$DRY_RUN_CMD chmod ''${VERBOSE_ARG:+-v} -R +w "$target"
done
'';
};
home.packages = with pkgs; [
((emacsPackagesFor emacs-mac).emacsWithPackages
2022-09-19 14:23:37 +00:00
(epkgs: with epkgs; [
vterm
pdf-tools
]))
(aspellWithDicts
(dpkgs: with dpkgs; [
en
en-computers
en-science
]))
2022-09-19 09:38:12 +00:00
bat
fd
2022-09-19 14:06:07 +00:00
ffmpeg
2022-09-19 14:23:37 +00:00
fzf
htop
nixpkgs-fmt
ripgrep
2022-09-19 14:24:16 +00:00
rnix-lsp
2022-09-19 14:23:37 +00:00
sqlite
tree
wget
];
2022-09-19 14:23:37 +00:00
# Somehow related to: https://github.com/NixOS/nixpkgs/issues/1000
home.file.".aspell.conf".text = "data-dir ${pkgs.aspell}/lib/aspell";
2022-09-19 14:23:37 +00:00
programs = {
2022-09-19 14:23:37 +00:00
direnv = {
enable = true;
nix-direnv.enable = true;
};
2022-09-19 14:23:37 +00:00
fzf = {
enable = true;
enableFishIntegration = true;
};
2022-09-19 14:23:37 +00:00
fish = {
enable = true;
2022-09-19 14:23:37 +00:00
functions = {
track_directories = {
description = "For directory tracking in emacs vterm";
onEvent = "fish_postexec";
body = "printf \'\\e]51;A\'(pwd)\'\\e\\\\\'";
};
};
2022-09-19 14:23:37 +00:00
shellInit = ''
track_directories
'';
};
2022-09-19 14:23:37 +00:00
starship = {
enable = true;
settings = {
character = {
success_symbol = "[λ](bold green)";
error_symbol = "[λ](bold red)";
};
};
};
git = {
enable = true;
userName = "larstvei";
userEmail = "larstvei@ifi.uio.no";
ignores = [ ".dir-locals.el" ".envrc" ".DS_Store" ];
};
# Let Home Manager install and manage itself.
home-manager.enable = true;
};
# 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 can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "22.05";
}