More home manager, back to alacritty, etc.

This commit is contained in:
Dustin Swan 2019-05-07 15:57:52 -04:00
parent f90ab78141
commit 34eeb8ba1c
No known key found for this signature in database
GPG key ID: AB49BD6B2B3A6377
2 changed files with 71 additions and 40 deletions

View file

@ -1,4 +1,4 @@
rsync -a --delete --progress Sync /Volumes/NO\ NAME/
rsync -a --delete --progress Pictures /Volumes/NO\ NAME/
rsync -a --delete --progress Contacts /Volumes/NO\ NAME/
rsync -a --delete --progress Calendars /Volumes/NO\ NAME/
rsync --ignore-times --checksum -a --delete --progress Sync /Volumes/NO\ NAME/
rsync --ignore-times --checksum -a --delete --progress Pictures /Volumes/NO\ NAME/
rsync --ignore-times --checksum -a --delete --progress Contacts /Volumes/NO\ NAME/
rsync --ignore-times --checksum -a --delete --progress Calendars /Volumes/NO\ NAME/

View file

@ -2,7 +2,7 @@
{
home.packages = with pkgs; [
bat wget silver-searcher tree ranger nodejs yarn mu mosh newsboat msmtp w3m urlview nmap rtv gnupg youtube-dl mpv alacritty
bat wget silver-searcher tree ranger nodejs yarn mu mosh newsboat msmtp w3m urlview nmap rtv gnupg youtube-dl
];
home.sessionVariables = {
@ -19,6 +19,36 @@
programs.home-manager.enable = true;
programs.alacritty = {
enable = true;
settings = {
window = {
padding = {
x = 12;
y = 12;
};
dimentions = {
columns = 0;
lines = 0;
};
};
font = {
normal.family = "Iosevka Nerd Font";
bold.family = "Iosevka Nerd Font";
italic.family = "Iosevka Nerd Font";
size = 16.0;
};
key_bindings = [
{
key = "N";
mods = "Control|Shift";
action = "SpawnNewInstance";
}
];
background_opacity = 0.95;
};
};
programs.tmux = {
enable = true;
shortcut = "a";
@ -78,6 +108,7 @@
};
shellAliases = {
l = "ls -la";
n = "nnn -isl";
ta = "tmux attach -d";
e = "emacsclient -a \"\" -t -nw";
weather = "curl http://wttr.in";