Splice configs/shared directory
- Move all children from configs/shared into configs. - Delete "shared" directory.
This commit is contained in:
parent
137bd6dc0c
commit
fe61dee511
169 changed files with 2 additions and 49299 deletions
3
configs/.config/nixpkgs/config.nix
Normal file
3
configs/.config/nixpkgs/config.nix
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
allowUnfree = true;
|
||||
}
|
||||
90
configs/.config/nixpkgs/home.nix
Normal file
90
configs/.config/nixpkgs/home.nix
Normal file
|
|
@ -0,0 +1,90 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
bat
|
||||
exa
|
||||
ripgrep
|
||||
fd
|
||||
pass
|
||||
tokei
|
||||
nmap
|
||||
tldr
|
||||
diskus
|
||||
jq
|
||||
pup
|
||||
];
|
||||
sessionVariables = {
|
||||
};
|
||||
stateVersion = "19.09";
|
||||
};
|
||||
|
||||
##############################################################################
|
||||
# Programs
|
||||
##############################################################################
|
||||
|
||||
programs.home-manager = {
|
||||
enable = true;
|
||||
path = builtins.toPath ~/home-manager;
|
||||
};
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "William Carroll";
|
||||
userEmail = "wpcarro@gmail.com";
|
||||
aliases = {
|
||||
today = "! git log --date=relative --since=00:00:00 --all --no-merges --oneline --author=\"$(git config --get user.email)\"";
|
||||
yday = "! git log --since=yesterday.midnight --until=today.midnight --oneline --author=\"$(git config --get user.email)\"";
|
||||
changed-files = "! git --no-pager diff --name-only $(current_branch) $(git merge-base $(current_branch) master)";
|
||||
conflicts = "! git --no-pager diff --name-only --diff-filter=U";
|
||||
unstage = "reset HEAD --";
|
||||
};
|
||||
extraConfig = {
|
||||
push.default = "current";
|
||||
rebase = {
|
||||
autosquash = true;
|
||||
autostash = true;
|
||||
};
|
||||
rerere.enabled = true;
|
||||
};
|
||||
};
|
||||
|
||||
programs.gpg = {
|
||||
enable = true;
|
||||
settings = {
|
||||
keyserver = "hkp://pgp.mit.edu";
|
||||
};
|
||||
};
|
||||
|
||||
programs.ssh = {
|
||||
enable = true;
|
||||
matchBlocks = {
|
||||
desktop = {
|
||||
user = "wpcarro";
|
||||
hostname = "zeno.lon.corp.google.com";
|
||||
};
|
||||
socrates = {
|
||||
user = "wpcarro";
|
||||
hostname = "84.92.33.141";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
programs.fzf = rec {
|
||||
defaultCommand = "fd --hidden --follow --exclude '.git'";
|
||||
fileWidgetCommand = defaultCommand;
|
||||
};
|
||||
|
||||
##############################################################################
|
||||
# Services
|
||||
##############################################################################
|
||||
|
||||
services.lorri.enable = true;
|
||||
|
||||
services.gpg-agent = {
|
||||
enable = true;
|
||||
defaultCacheTtl = 7200;
|
||||
maxCacheTtl = 7200;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue