2021-03-08 21:35:29 +01:00
|
|
|
{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, hostname, rlib, inputs }:
|
2021-02-02 20:10:25 +01:00
|
|
|
{ config, lib, ... }:
|
2020-12-26 23:36:50 +01:00
|
|
|
{
|
|
|
|
home.packages = with nixpkgs; [
|
|
|
|
zip
|
2021-01-18 09:00:12 +01:00
|
|
|
unzip
|
|
|
|
pinentry
|
|
|
|
libqrencode
|
2020-12-26 23:36:50 +01:00
|
|
|
unrar
|
|
|
|
pciutils
|
2020-12-27 02:15:29 +01:00
|
|
|
git
|
2020-12-31 15:36:55 +01:00
|
|
|
socat
|
2021-01-18 09:00:12 +01:00
|
|
|
gnumake
|
|
|
|
llvmPackages.bintools
|
2021-02-26 10:24:58 +01:00
|
|
|
pkgconfig
|
2021-03-14 10:59:10 +01:00
|
|
|
htop
|
2021-02-26 10:24:58 +01:00
|
|
|
] ++ (with custom; [
|
|
|
|
screenshot
|
|
|
|
]);
|
2020-12-26 23:36:50 +01:00
|
|
|
}
|