More home manager, back to alacritty, etc.
This commit is contained in:
parent
f90ab78141
commit
34eeb8ba1c
2 changed files with 71 additions and 40 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
rsync -a --delete --progress Sync /Volumes/NO\ NAME/
|
rsync --ignore-times --checksum -a --delete --progress Sync /Volumes/NO\ NAME/
|
||||||
rsync -a --delete --progress Pictures /Volumes/NO\ NAME/
|
rsync --ignore-times --checksum -a --delete --progress Pictures /Volumes/NO\ NAME/
|
||||||
rsync -a --delete --progress Contacts /Volumes/NO\ NAME/
|
rsync --ignore-times --checksum -a --delete --progress Contacts /Volumes/NO\ NAME/
|
||||||
rsync -a --delete --progress Calendars /Volumes/NO\ NAME/
|
rsync --ignore-times --checksum -a --delete --progress Calendars /Volumes/NO\ NAME/
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
home.packages = with pkgs; [
|
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 = {
|
home.sessionVariables = {
|
||||||
|
|
@ -19,6 +19,36 @@
|
||||||
|
|
||||||
programs.home-manager.enable = true;
|
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 = {
|
programs.tmux = {
|
||||||
enable = true;
|
enable = true;
|
||||||
shortcut = "a";
|
shortcut = "a";
|
||||||
|
|
@ -78,6 +108,7 @@
|
||||||
};
|
};
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
l = "ls -la";
|
l = "ls -la";
|
||||||
|
n = "nnn -isl";
|
||||||
ta = "tmux attach -d";
|
ta = "tmux attach -d";
|
||||||
e = "emacsclient -a \"\" -t -nw";
|
e = "emacsclient -a \"\" -t -nw";
|
||||||
weather = "curl http://wttr.in";
|
weather = "curl http://wttr.in";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue