diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2021-01-03 00:55:29 +0100 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2021-01-03 16:21:34 +0100 |
commit | 4a3d2a8ddaf4e546df360656bc54b2947bdb890b (patch) | |
tree | f571511e0b74fbd7e78f7e10966a8d6d5d400241 /user-profiles/utils.nix | |
parent | 3b5ab82fa714a0d483a7b90d60f9f7c857646e33 (diff) | |
download | nixos-4a3d2a8ddaf4e546df360656bc54b2947bdb890b.tar nixos-4a3d2a8ddaf4e546df360656bc54b2947bdb890b.tar.gz nixos-4a3d2a8ddaf4e546df360656bc54b2947bdb890b.tar.bz2 nixos-4a3d2a8ddaf4e546df360656bc54b2947bdb890b.tar.xz nixos-4a3d2a8ddaf4e546df360656bc54b2947bdb890b.zip |
gkleen@sif: import
Diffstat (limited to 'user-profiles/utils.nix')
-rw-r--r-- | user-profiles/utils.nix | 22 |
1 files changed, 22 insertions, 0 deletions
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 @@ | |||
1 | { userName, pkgs, ... }: | ||
2 | { | ||
3 | home-manager.users.${userName} = { | ||
4 | programs = { | ||
5 | htop = { | ||
6 | enable = true; | ||
7 | delay = 5; | ||
8 | highlightBaseName = true; | ||
9 | treeView = true; | ||
10 | }; | ||
11 | |||
12 | jq.enable = true; | ||
13 | }; | ||
14 | |||
15 | home.packages = with pkgs; [ | ||
16 | autossh usbutils pciutils exa ag pwgen unzip magic-wormhole | ||
17 | qrencode tty-clock dnsutils openssl sshfs psmisc mosh tree | ||
18 | vnstat file pv bc fast-cli zip nmap aspell aspellDicts.de | ||
19 | aspellDicts.en borgbackup man-pages rsync socat telnet yq | ||
20 | ]; | ||
21 | }; | ||
22 | } | ||