From 4a3d2a8ddaf4e546df360656bc54b2947bdb890b Mon Sep 17 00:00:00 2001 From: Gregor Kleen Date: Sun, 3 Jan 2021 00:55:29 +0100 Subject: gkleen@sif: import --- user-profiles/utils.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 user-profiles/utils.nix (limited to 'user-profiles/utils.nix') diff --git a/user-profiles/utils.nix b/user-profiles/utils.nix new file mode 100644 index 00000000..1de9e4eb --- /dev/null +++ b/user-profiles/utils.nix @@ -0,0 +1,22 @@ +{ userName, pkgs, ... }: +{ + home-manager.users.${userName} = { + programs = { + htop = { + enable = true; + delay = 5; + highlightBaseName = true; + treeView = true; + }; + + jq.enable = true; + }; + + home.packages = with pkgs; [ + autossh usbutils pciutils exa ag pwgen unzip magic-wormhole + qrencode tty-clock dnsutils openssl sshfs psmisc mosh tree + vnstat file pv bc fast-cli zip nmap aspell aspellDicts.de + aspellDicts.en borgbackup man-pages rsync socat telnet yq + ]; + }; +} -- cgit v1.2.3