better way to enable apps
This commit is contained in:
parent
f8fd265d9c
commit
b8b0403f52
|
@ -286,7 +286,6 @@ in
|
||||||
pkgs.kdePackages.ark
|
pkgs.kdePackages.ark
|
||||||
aspellDicts.de
|
aspellDicts.de
|
||||||
aspellDicts.en
|
aspellDicts.en
|
||||||
bat
|
|
||||||
bitwise
|
bitwise
|
||||||
borgbackup
|
borgbackup
|
||||||
btop
|
btop
|
||||||
|
@ -299,9 +298,7 @@ in
|
||||||
duf
|
duf
|
||||||
efibootmgr
|
efibootmgr
|
||||||
emacs
|
emacs
|
||||||
eza
|
|
||||||
f2
|
f2
|
||||||
fd
|
|
||||||
fdupes
|
fdupes
|
||||||
ffmpeg
|
ffmpeg
|
||||||
file
|
file
|
||||||
|
@ -331,7 +328,6 @@ in
|
||||||
libjxl
|
libjxl
|
||||||
libreoffice
|
libreoffice
|
||||||
libva-utils
|
libva-utils
|
||||||
lsd
|
|
||||||
lsof
|
lsof
|
||||||
mc
|
mc
|
||||||
micro
|
micro
|
||||||
|
|
22
home.nix
22
home.nix
|
@ -39,11 +39,6 @@
|
||||||
verify = "sudo nix --extra-experimental-features nix-command store verify --all";
|
verify = "sudo nix --extra-experimental-features nix-command store verify --all";
|
||||||
optimize = "sudo nix --extra-experimental-features nix-command store optimise";
|
optimize = "sudo nix --extra-experimental-features nix-command store optimise";
|
||||||
|
|
||||||
# overwrite some tools
|
|
||||||
cat = "bat";
|
|
||||||
ls = "lsd";
|
|
||||||
la = "lsd -ahl";
|
|
||||||
|
|
||||||
# ssh around in the local network
|
# ssh around in the local network
|
||||||
mac = "ssh mac.fritz.box";
|
mac = "ssh mac.fritz.box";
|
||||||
macroot = "ssh root@mac.fritz.box";
|
macroot = "ssh root@mac.fritz.box";
|
||||||
|
@ -85,6 +80,7 @@
|
||||||
# nice cd
|
# nice cd
|
||||||
programs.zoxide = {
|
programs.zoxide = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
enableZshIntegration = true;
|
||||||
options = [ "--cmd" "cd" ];
|
options = [ "--cmd" "cd" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -93,6 +89,22 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# better ls, adds la and Co. aliases, too
|
||||||
|
programs.eza = {
|
||||||
|
enable = true;
|
||||||
|
enableZshIntegration = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
# better cat
|
||||||
|
programs.bat = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
# better find
|
||||||
|
programs.fd = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
# enable keychain, we use the main user key
|
# enable keychain, we use the main user key
|
||||||
programs.keychain = {
|
programs.keychain = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue