feat(users/multi): bootstrap home-manager configuration for whitby
Change-Id: Iad3024a5a640d33377cfae436134fda9f358397b Reviewed-on: https://cl.tvl.fyi/c/depot/+/1703 Tested-by: BuildkiteCI Reviewed-by: multi <depot@in-addr.xyz>
This commit is contained in:
parent
5e58c8bc28
commit
5851f672ac
15 changed files with 3677 additions and 0 deletions
33
users/multi/pkgs/htop/default.nix
Normal file
33
users/multi/pkgs/htop/default.nix
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
let
|
||||
arcStats = [
|
||||
./zfs-arc-stats/0001-Specify-correct-MIB-length.patch
|
||||
./zfs-arc-stats/0002-Support-ZFS-ARC-stats-on-FreeBSD.patch
|
||||
./zfs-arc-stats/0003-ZFS-arcstats-for-Linux.patch
|
||||
./zfs-arc-stats/0004-ZFS-arcstats-for-Darwin-macOS-OS-X.patch
|
||||
./zfs-arc-stats/0005-Refactor-common-OpenZFS-sysctl-access.patch
|
||||
./zfs-arc-stats/0006-ZFS-arcstats-for-Solaris.patch
|
||||
./zfs-arc-stats/0007-Refactor-openzfs_sysctl_init-and-ZfsArcMeter.patch
|
||||
./zfs-arc-stats/0008-Support-for-ZFS-Compressed-ARC-statistics.patch
|
||||
./zfs-arc-stats/0009-Linux-fixes.patch
|
||||
];
|
||||
|
||||
arcCache = [
|
||||
./zfs-arc-cache/0001-Linux-consider-ZFS-ARC-to-be-cache.patch
|
||||
];
|
||||
|
||||
removeMousing = [
|
||||
./remove-mousing/0001-Tear-out-ncurses-mouse-mode.patch
|
||||
];
|
||||
|
||||
octoMeter = [
|
||||
./octo-meter/0001-Add-quad-and-octo-meter-display-meters.patch
|
||||
];
|
||||
in
|
||||
with pkgs; htop.overrideAttrs
|
||||
({ patches ? [], nativeBuildInputs ? [], ... }:
|
||||
{
|
||||
patches = patches ++ arcStats ++ arcCache ++ removeMousing ++ octoMeter;
|
||||
nativeBuildInputs = nativeBuildInputs ++ [ autoreconfHook ];
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue