nix-darwin/home.nix

46 lines
1.1 KiB
Nix

{ config, pkgs, ... }:
{
home.stateVersion = "25.05";
home.packages = with pkgs; [
wget # Tool for retrieving files using HTTP/S and FTP
imagemagick # Image manipulation software suite
gauche # R7RS Scheme scripting engine
typst # Modern markup-based typesetting system
rsync # Incremental file transfer utility
tmux # Terminal multiplexer
btop # Resource monitor
irssi # Terminal based IRC client
];
home.file = {
".config/ghostty/config" .source = dotfiles/ghostty/config;
".config/kanata/conf.kbd" .source = dotfiles/kanata/conf.kbd;
".config/nvim/init.lua" .source = dotfiles/nvim/init.lua;
};
home.sessionVariables = {
EDITOR = "nvim";
};
programs.git = {
enable = true;
userName = "lulusilly";
userEmail = "lunita@puppygirl.onl";
aliases = {
ci = "commit -m";
pu = "push origin main";
pm = "push origin master";
s = "status";
co = "checkout";
};
};
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
programs.home-manager.enable = true;
}