dotfiles/home-nix/home.nix

131 lines
3.4 KiB
Nix
Raw Normal View History

# myHome is injected from extraSpecialArgs in flake.nix
2022-11-09 11:35:28 +00:00
{ config
, pkgs
, myHome
2022-11-09 13:00:23 +00:00
, myLib
2022-11-14 07:50:02 +00:00
, extraSSH
2022-11-09 11:35:28 +00:00
, ...
}:
2022-11-06 20:23:10 +00:00
{
home = {
username = myHome.username;
homeDirectory = myHome.homeDirectory;
stateVersion = myHome.stateVersion or "22.05";
};
2022-11-06 22:22:09 +00:00
home.packages = [
2022-11-09 11:35:28 +00:00
pkgs.htop
pkgs.ripgrep
pkgs.gcc
pkgs.fd
pkgs.zk
pkgs.unzip
pkgs.rust-bin.nightly.latest.default
pkgs.nodejs-18_x
pkgs.rust-analyzer
pkgs.stdenv.cc.cc.lib
2022-11-09 13:00:23 +00:00
pkgs.yq
2022-11-09 15:35:44 +00:00
pkgs.python39Full
pkgs.xorg.xclock
2022-11-12 16:25:28 +00:00
pkgs.logseq
2022-11-14 07:50:02 +00:00
pkgs.mosh
# pkgs.python310 # dev packages should be in jk
2022-11-09 15:35:44 +00:00
# pkgs.python310.numpy
# pkgs.python310Packages.tensorflow
# pkgs.python310Packages.scikit-learn
2022-11-09 11:35:28 +00:00
] ++ (myHome.packages or [ ]);
2022-11-06 20:23:10 +00:00
nixpkgs.config.allowUnfree = true;
2022-11-06 22:22:09 +00:00
## Configs ##
xdg.configFile."nvim/init.lua".text = builtins.readFile ../neovim/init.lua;
xdg.configFile."starship.toml".text = builtins.readFile ../starship/starship.toml;
## Programs ##
2022-11-09 13:00:23 +00:00
programs.jq = {
enable = true;
};
programs.alacritty = myHome.programs.alacritty or {
2022-11-07 15:23:25 +00:00
enable = true;
2022-11-09 13:00:23 +00:00
# settings = myLib.fromYaml (builtins.readFile ../alacritty/alacritty.yml);
2022-11-07 15:23:25 +00:00
};
# nix: Propagates the environment with packages and vars when enter (children of)
# a directory with shell.nix-compatible and .envrc
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
# z <path> as smarter cd
2022-11-06 22:22:09 +00:00
programs.zoxide = {
enable = true;
enableZshIntegration = true;
};
programs.tmux = {
enable = true;
extraConfig = builtins.readFile ../tmux/tmux.conf;
2022-11-06 22:22:09 +00:00
};
programs.exa = {
enable = true;
enableAliases = true;
};
programs.starship = {
enable = true;
enableZshIntegration = true;
};
2022-11-06 20:23:10 +00:00
programs.home-manager.enable = true;
programs.fzf.enable = true;
programs.neovim = {
enable = true;
viAlias = true;
vimAlias = true;
# I use vim-plug, so I probably don't require packaging
# extraConfig actually writes to init-home-manager.vim (not lua)
# https://github.com/nix-community/home-manager/pull/3287
# extraConfig = builtins.readFile ../neovim/init.lua;
};
2022-11-10 18:42:35 +00:00
programs.bash = {
enable = true;
enableCompletion = true;
initExtra = myHome.shellInitExtra or "";
};
2022-11-06 20:23:10 +00:00
programs.zsh = {
enable = true;
enableCompletion = true;
enableAutosuggestions = true;
shellAliases = {
nix-rebuild = "sudo nixos-rebuild switch";
2022-11-06 22:22:09 +00:00
hm-switch = "home-manager switch --flake";
2022-11-09 11:35:28 +00:00
} // (myHome.shellAliases or { });
2022-11-06 20:23:10 +00:00
history = {
size = 10000;
path = "${config.xdg.dataHome}/zsh/history";
};
oh-my-zsh = {
enable = true;
plugins = [ "git" "sudo" "command-not-found" "gitignore" "ripgrep" "rust" ];
};
2022-11-10 18:42:35 +00:00
initExtra = myHome.shellInitExtra or "";
2022-11-06 20:23:10 +00:00
};
programs.git = {
enable = true;
lfs.enable = true;
aliases = {
2022-11-09 11:35:28 +00:00
a = "add";
c = "commit";
ca = "commit --ammend";
cm = "commit -m";
lol = "log --graph --decorate --pretty=oneline --abbrev-commit";
lola = "log --graph --decorate --pretty=oneline --abbrev-commit --all";
sts = "status";
2022-11-06 20:23:10 +00:00
};
extraConfig = {
2022-11-09 11:35:28 +00:00
merge = { tool = "vimdiff"; conflictstyle = "diff3"; };
2022-11-06 20:23:10 +00:00
};
# why is this no longer valid?
# pull = { rebase=true; };
};
programs.ssh = {
enable = true;
forwardAgent = true;
extraConfig = builtins.readFile ../ssh/config;
};
2022-11-06 20:23:10 +00:00
}