nixos/nate/modules/home-manager/home.nix

224 lines
5.2 KiB
Nix
Raw Normal View History

{ inputs, outputs, lib, config, pkgs, ... }:
let
userName = "nate";
fullName = "Nathan Anderson";
email = "n8r@tuta.io";
in
2023-12-14 17:23:01 -07:00
{
2023-12-18 20:12:41 -07:00
# nixpkgs.overlays = [
# inputs.nur.overlay
# ];
2023-12-15 11:43:28 -07:00
# nixpkgs.config.allowUnfree = true;
2023-12-15 09:24:13 -07:00
# inputs.nixpkgs-stable.config.allowUnfree = true;
2023-12-18 20:12:41 -07:00
imports = [
../apps/firefox/firefox.nix
];
2023-12-14 17:23:01 -07:00
home.username = userName;
home.homeDirectory = "/home/${userName}";
programs.home-manager.enable = true;
home.stateVersion = "23.11"; # Please read the comment before changing.
# The home.packages option allows you to install Nix packages into your
# environment.
2023-12-18 20:12:41 -07:00
firefoxApp.enable = true;
2023-12-14 17:23:01 -07:00
fonts.fontconfig.enable = true;
home.packages = with pkgs; [
2023-12-18 20:12:41 -07:00
# nur.repos.crazazy.js.eslint
# inputs.nixpkgs-stable.legacyPackages.x86_64-linux.corectrl
chromium
#
# Dev Tools
#
dbeaver
cargo
helix
# kakoune
2024-02-15 14:10:57 -07:00
# flutter316
docker
docker-compose
jq
python310
nodejs_21
zig
### LSP's
nil # Nix LSP
openscad-lsp
nodePackages.typescript-language-server
vscode-langservers-extracted # provides eslint, markdown, json, css, and html lsp
rubyPackages.solargraph
python310Packages.python-lsp-server
zls
### Misc
# android-udev-rules
# android-tools
# sdkmanager
openscad
#
# Gaming
#
amdgpu_top
mangohud
wine-wayland
webcord
#
# Better Unix
#
bat
duf
fd
fzf
lsd
ripgrep
tre-command
gtop
htop
neofetch
# Normies
unzip
#
# Photo / Video
#
davinci-resolve-studio
imv
mpv
gimp
ffmpeg
#
# Communication
#
mumble
slack
signal-desktop
#
# Other
#
2023-12-14 17:23:01 -07:00
keepassxc
2023-12-14 21:58:29 -07:00
obs-studio
2023-12-14 17:23:01 -07:00
# Install fonts
2023-12-16 16:36:03 -07:00
(nerdfonts.override { fonts = [ "Hermit" "Overpass" ]; })
2023-12-14 17:23:01 -07:00
# # You can also create simple shell scripts directly inside your
# # configuration. For example, this adds a command 'my-hello' to your
# # environment:
# (pkgs.writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!"
# '')
];
# Home Manager is pretty good at managing dotfiles. The primary way to manage
# plain files is through 'home.file'.
home.file."${config.xdg.configHome}" = {
# # Building this configuration will create a copy of 'dotfiles/screenrc' in
# # the Nix store. Activating the configuration will then make '~/.screenrc' a
# # symlink to the Nix store copy.
# ".screenrc".source = dotfiles/screenrc;
source = ../../dotfiles;
2023-12-14 17:23:01 -07:00
recursive = true;
# # You can also set the file content immediately.
# ".gradle/gradle.properties".text = ''
# org.gradle.console=verbose
# org.gradle.daemon.idletimeout=3600000
# '';
};
2023-12-15 11:43:28 -07:00
2023-12-14 17:23:01 -07:00
# Home Manager can also manage your environment variables through
# 'home.sessionVariables'. If you don't want to manage your shell through Home
# Manager then you have to manually source 'hm-session-vars.sh' located at
# either
#
# ~/.nix-profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# /etc/profiles/per-user/nate/etc/profile.d/hm-session-vars.sh
#
home.sessionVariables = {
EDITOR = "hx";
2023-12-18 20:12:41 -07:00
XDG_CURRENT_DESKTOP="sway";
2023-12-14 17:23:01 -07:00
};
# Git setup
programs.git = {
2023-12-14 21:58:29 -07:00
enable = true;
2023-12-16 16:36:03 -07:00
userEmail = email;
userName = fullName;
2023-12-14 17:23:01 -07:00
};
2024-03-17 16:39:06 -06:00
programs = {
direnv = {
enable = true;
enableZshIntegration = true; # see note on other shells below
nix-direnv.enable = true;
};
bash.enable = true; # see note on other shells below
};
2023-12-14 17:23:01 -07:00
# Zsh setup
programs.zsh = {
enable = true;
oh-my-zsh = {
enable = true;
plugins = [ "git" ];
theme = "half-life";
};
2023-12-18 20:12:41 -07:00
initExtra = ''
2024-03-17 16:39:06 -06:00
eval "$(direnv hook zsh)"
2023-12-18 20:12:41 -07:00
alias ask="nix-shell -p python310Packages.openai --run 'python ~/source/python/chat.py'"
fzf_projects() {
DIR=`
fd .git --search-path="$HOME/source/" -H --ignore-file ~/.config/fd-ignore -tdirectory | \
xargs dirname | \
sed 's|$HOME||g' | \
sort | \
uniq | \
fzf --preview 'ls $HOME/{}/README.md 2>/dev/null && bat $HOME/{}/README.md || printf "No README.md file found in this directory\n%s" {}' --preview-window=top | \
xargs printf "$HOME/%s/"
`
cd $DIR
}
alias p="fzf_projects ~/source/"
2023-12-18 20:12:41 -07:00
2024-01-20 13:34:45 -07:00
alias ls="lsd"
alias l="lsd --almost-all --long"
alias llm="lsd --timesort --long"
alias lS="lsd --oneline --classic"
alias lt="lsd --tree --depth=2"
alias grep="rg"
2023-12-18 20:12:41 -07:00
'';
2023-12-14 17:23:01 -07:00
};
qt = {
enable = true;
platformTheme = "gtk";
style.name = "adwaita-dark";
style.package = pkgs.adwaita-qt;
};
gtk = {
enable = true;
cursorTheme.package = pkgs.catppuccin-cursors;
cursorTheme.name = "latteFlamingo";
theme = {
name = "Catppuccin-Latte-Pink";
package = pkgs.catppuccin-gtk.override {
accents = [ "pink" ];
tweaks = [ ];
variant = "latte";
};
};
};
2023-12-14 17:23:01 -07:00
}