From d1b07ec06b413a38cd5101ee84a04f9e3391cc6f Mon Sep 17 00:00:00 2001 From: Zuckerberg Date: Sun, 16 Jun 2024 12:10:39 -0600 Subject: [PATCH] Add llsblk helper cmd alias --- common/shell.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/shell.nix b/common/shell.nix index 55c6336..caabafc 100644 --- a/common/shell.nix +++ b/common/shell.nix @@ -34,6 +34,8 @@ io_seq_write = "${pkgs.fio}/bin/fio --name TEST --eta-newline=5s --filename=temp.file --rw=write --size=2g --io_size=10g --blocksize=1024k --ioengine=libaio --fsync=10000 --iodepth=32 --direct=1 --numjobs=1 --runtime=60 --group_reporting; rm temp.file"; io_rand_read = "${pkgs.fio}/bin/fio --name TEST --eta-newline=5s --filename=temp.file --rw=randread --size=2g --io_size=10g --blocksize=4k --ioengine=libaio --fsync=1 --iodepth=1 --direct=1 --numjobs=32 --runtime=60 --group_reporting; rm temp.file"; io_rand_write = "${pkgs.fio}/bin/fio --name TEST --eta-newline=5s --filename=temp.file --rw=randrw --size=2g --io_size=10g --blocksize=4k --ioengine=libaio --fsync=1 --iodepth=1 --direct=1 --numjobs=1 --runtime=60 --group_reporting; rm temp.file"; + + llsblk = "lsblk -o +uuid,fsType"; }; nixpkgs.overlays = [