From 62e2519639faa250f43f9e80e69906a59d07a44e Mon Sep 17 00:00:00 2001 From: Grisha Shipunov Date: Sat, 11 Jan 2025 03:55:19 +0100 Subject: delete legacy stuff and reformat --- modules/basic-tools/default.nix | 76 ++++++++++++++++++++++++----------------- 1 file changed, 44 insertions(+), 32 deletions(-) (limited to 'modules/basic-tools/default.nix') diff --git a/modules/basic-tools/default.nix b/modules/basic-tools/default.nix index f7ef3c3..1d4f2a4 100644 --- a/modules/basic-tools/default.nix +++ b/modules/basic-tools/default.nix @@ -8,37 +8,48 @@ ./nix-ld.nix ]; - environment.systemPackages = with pkgs; [ - bat - fd - file - gnupg - glow - htop - irssi - killall - neovim - ripgrep - tealdeer - traceroute - tcpdump - tree - (aspellWithDicts (ps: with ps; [ en en-science en-computers ru nl ])) - exfatprogs - nmap - bind - nnn - lf - man-pages - unzip - usbutils - pciutils - ouch - cryptsetup - sshfs - whois - mtr - ] ++ (if config.networking.hostName == "toaster" then [ gitFull ] else [ git ]); + environment.systemPackages = + with pkgs; + [ + bat + fd + file + gnupg + glow + htop + irssi + killall + neovim + ripgrep + tealdeer + traceroute + tcpdump + tree + (aspellWithDicts ( + ps: with ps; [ + en + en-science + en-computers + ru + nl + ] + )) + exfatprogs + nmap + bind + nnn + lf + man-pages + unzip + usbutils + pciutils + ouch + cryptsetup + sshfs + whois + mtr + ] + ++ (if config.networking.hostName == "toaster" then [ gitFull ] else [ git ]); environment.variables = let @@ -53,7 +64,8 @@ { PAGER = "less"; LESS = "-X -R -F"; - } // editorconf; + } + // editorconf; environment.shellAliases = { ls = "ls --color=auto"; -- cgit v1.3.1