modules/users.nix : add alias lsd for ls

i3config : add launch sublime-music
i3status.nix : add music bloc
nixpkgs/home.nix : add bat.nix
main
Alexandre LUCAZEAU 2022-09-28 16:33:03 +02:00
parent 6463f2dbe0
commit cf9f38d48b
No known key found for this signature in database
GPG Key ID: 3C8ADB07A8217BD3
5 changed files with 9 additions and 1 deletions

View File

@ -143,6 +143,7 @@ exec --no-startup-id nm-applet
exec --no-startup-id nextcloud
exec --no-startup-id udiskie -t
exec --no-startup-id blueman-applet
exec --no-startup-id sublime-music
exec --no-startup-id i3-msg 'workspace $ws9; exec keepassxc;'
#exec --no-startup-id i3-msg 'workspace $ws5; exec emacs;'
exec --no-startup-id i3-msg 'workspace $ws1; exec alacritty;'

View File

@ -9,6 +9,7 @@
./emacs.nix
./mails.nix
./dunst.nix
./bat.nix
# ./redshift.nix
# ../../../modules/neovim.nix
../../../modules/rust.nix

View File

@ -72,6 +72,11 @@
interval = 60;
format = "%a %d/%m %R";
}
{
block = "pomodoro";
message = "Break !";
break_message = "Reprise";
}
];
icons = "material-nf";
theme = "nord-dark";

View File

@ -57,5 +57,6 @@
sublime-music
wezterm
drawio
lsd
];
}

View File

@ -27,7 +27,7 @@
programs.fish.enable = true;
programs.fish.shellAliases = {
ll = "ls -l";
ls = "exa";
ls = "lsd";
vi = "nvim";
vim = "nvim";
};