2022-02-12 23:24:30 -05:00
|
|
|
{ pkgs, config, unstable, ... }:
|
|
|
|
{
|
|
|
|
## Some general settings that were in the user configuration
|
|
|
|
# Set time zone
|
|
|
|
time.timeZone = "America/New_York";
|
|
|
|
## Setup user first
|
|
|
|
users = {
|
|
|
|
users.nathan = {
|
|
|
|
home = "/home/nathan";
|
|
|
|
description = "Nathan McCarty";
|
2022-03-31 01:21:37 -04:00
|
|
|
shell = pkgs.fish;
|
2022-02-12 23:24:30 -05:00
|
|
|
};
|
|
|
|
};
|
|
|
|
## Home manager proper
|
|
|
|
home-manager = {
|
|
|
|
useGlobalPkgs = true;
|
|
|
|
useUserPackages = true;
|
2022-05-02 02:00:58 -04:00
|
|
|
# Disable git "safe directories" for root
|
|
|
|
# This is _highly_ cautioned against, but the feature breaks my workflow
|
|
|
|
users.root = {
|
|
|
|
programs.git = {
|
|
|
|
extraConfig = {
|
|
|
|
safe = {
|
|
|
|
directory = "*";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2022-02-12 23:24:30 -05:00
|
|
|
users.nathan = {
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
## Shell
|
|
|
|
# Shell proper
|
|
|
|
programs.fish = {
|
|
|
|
enable = true;
|
|
|
|
# Setup our aliases
|
|
|
|
shellAliases = {
|
|
|
|
ls = "exa --icons";
|
2022-04-19 21:13:40 -04:00
|
|
|
la = "exa --icons -a";
|
2022-04-19 21:14:36 -04:00
|
|
|
lg = "exa --icons --git";
|
|
|
|
cat = "bat";
|
2022-04-19 21:13:40 -04:00
|
|
|
dig = "dog";
|
|
|
|
df = "duf";
|
2022-02-12 23:24:30 -05:00
|
|
|
};
|
|
|
|
# Custom configuration
|
|
|
|
interactiveShellInit = ''
|
|
|
|
# Setup any-nix-shell
|
|
|
|
any-nix-shell fish --info-right | source
|
2022-04-04 11:12:41 -04:00
|
|
|
# Load logger function
|
|
|
|
source ~/.config/fish/functions/cmdlogger.fish
|
2022-02-12 23:24:30 -05:00
|
|
|
'';
|
2022-04-04 11:12:41 -04:00
|
|
|
functions = {
|
|
|
|
# Setup command logging to ~/.logs
|
|
|
|
cmdlogger = {
|
|
|
|
onEvent = "fish_preexec";
|
|
|
|
body = ''
|
|
|
|
mkdir -p ~/.logs
|
|
|
|
echo (date -u +"%Y-%m-%dT%H:%M:%SZ")" "(echo %self)" "(pwd)": "$argv >> ~/.logs/(hostname)-(date "+%Y-%m-%d").log
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
2022-02-12 23:24:30 -05:00
|
|
|
};
|
|
|
|
# Starship, for the prompt
|
|
|
|
programs.starship = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
directory = {
|
|
|
|
truncation_length = 3;
|
|
|
|
fish_style_pwd_dir_length = 1;
|
|
|
|
};
|
|
|
|
git_commit = {
|
|
|
|
commit_hash_length = 6;
|
|
|
|
only_detached = false;
|
|
|
|
};
|
|
|
|
package = {
|
|
|
|
symbol = "";
|
|
|
|
};
|
|
|
|
time = {
|
|
|
|
disabled = false;
|
|
|
|
format = "[$time]($style)";
|
|
|
|
time_format = "%I:%M %p";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2022-02-12 23:53:02 -05:00
|
|
|
# Git configuration
|
|
|
|
programs.git = {
|
|
|
|
enable = true;
|
|
|
|
userName = "Nathan McCarty";
|
|
|
|
userEmail = "nathan@mccarty.io";
|
|
|
|
signing = {
|
|
|
|
key = "B7A40A5D78C08885";
|
|
|
|
signByDefault = true;
|
|
|
|
};
|
|
|
|
ignores = [
|
|
|
|
"**/*~"
|
|
|
|
"*~"
|
|
|
|
"*_archive"
|
|
|
|
"/auto/"
|
|
|
|
"auto-save-list"
|
|
|
|
".cask/"
|
|
|
|
".dir-locals.el"
|
|
|
|
"dist/"
|
|
|
|
"**/.DS_Store"
|
|
|
|
"*.elc"
|
|
|
|
"/elpa/"
|
|
|
|
"/.emacs.desktop"
|
|
|
|
"/.emacs.desktop.lock"
|
|
|
|
"/eshell/history"
|
|
|
|
"/eshell/lastdir"
|
|
|
|
"flycheck_*.el"
|
|
|
|
"*_flymake.*"
|
|
|
|
"/network-security.data"
|
|
|
|
".org-id-locations"
|
|
|
|
".persp"
|
|
|
|
".projectile"
|
|
|
|
"*.rel"
|
|
|
|
"/server/"
|
|
|
|
"tramp"
|
|
|
|
"\\#*\\#"
|
|
|
|
];
|
2022-04-19 21:13:40 -04:00
|
|
|
delta.enable = true;
|
2022-02-12 23:53:02 -05:00
|
|
|
extraConfig = {
|
|
|
|
init = {
|
|
|
|
defaultBranch = "trunk";
|
|
|
|
};
|
|
|
|
log = {
|
|
|
|
showSignature = true;
|
|
|
|
abbrevCommit = true;
|
|
|
|
follow = true;
|
|
|
|
decorate = false;
|
|
|
|
};
|
|
|
|
rerere = {
|
|
|
|
enable = true;
|
|
|
|
autoupdate = true;
|
|
|
|
};
|
|
|
|
merge = {
|
|
|
|
ff = "only";
|
|
|
|
conflictstyle = "diff3";
|
|
|
|
};
|
|
|
|
push = {
|
|
|
|
default = "simple";
|
|
|
|
followTags = true;
|
|
|
|
};
|
|
|
|
pull = {
|
|
|
|
rebase = true;
|
|
|
|
};
|
|
|
|
status = {
|
|
|
|
showUntrackedFiles = "all";
|
|
|
|
};
|
|
|
|
transfer = {
|
|
|
|
fsckobjects = true;
|
|
|
|
};
|
|
|
|
color = {
|
|
|
|
ui = "auto";
|
|
|
|
};
|
|
|
|
diff = {
|
|
|
|
mnemonicPrefix = true;
|
|
|
|
renames = true;
|
|
|
|
wordRegex = ".";
|
|
|
|
submodule = "log";
|
|
|
|
};
|
2022-02-23 13:38:57 -05:00
|
|
|
credential = {
|
|
|
|
helper = "cache";
|
|
|
|
};
|
2022-05-02 02:00:58 -04:00
|
|
|
# Disable annoying safe directory nonsense
|
|
|
|
safe = {
|
|
|
|
directory = "*";
|
|
|
|
};
|
2022-02-12 23:53:02 -05:00
|
|
|
};
|
|
|
|
};
|
2022-04-24 17:39:32 -04:00
|
|
|
# SSH configuration
|
|
|
|
programs.ssh = {
|
|
|
|
enable = true;
|
|
|
|
# extra config to set the ciphers
|
|
|
|
extraConfig = ''
|
|
|
|
Ciphers aes128-gcm@openssh.com,aes256-gcm@openssh.com,chacha20-poly1305@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr
|
|
|
|
'';
|
|
|
|
# enable session reuse
|
|
|
|
controlMaster = "auto";
|
|
|
|
controlPersist = "10m";
|
|
|
|
# Configure known hosts
|
|
|
|
matchBlocks = {
|
|
|
|
"levitation" = {
|
|
|
|
forwardAgent = true;
|
|
|
|
user = "nathan";
|
|
|
|
hostname = "172.23.12.134";
|
|
|
|
};
|
2022-04-24 17:56:17 -04:00
|
|
|
"perception" = {
|
|
|
|
forwardAgent = true;
|
|
|
|
user = "nathan";
|
|
|
|
hostname = "172.23.55.145";
|
|
|
|
};
|
2022-04-24 17:39:32 -04:00
|
|
|
};
|
|
|
|
};
|
2022-02-12 23:24:30 -05:00
|
|
|
};
|
|
|
|
};
|
|
|
|
## Misc packages that were in user.nix
|
|
|
|
# Install general use packages
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
# Install our shell of choice
|
2022-03-31 01:21:37 -04:00
|
|
|
fish
|
2022-02-12 23:24:30 -05:00
|
|
|
# Install rclone
|
|
|
|
rclone
|
|
|
|
];
|
|
|
|
}
|