From 6b8636e2d979532d98b10a4a8393165ba2d5864c Mon Sep 17 00:00:00 2001 From: Fuwn Date: Tue, 25 Jun 2024 18:36:11 -0700 Subject: hi --- meta/rice/bottom/default.nix | 3 +++ meta/rice/btop/default.nix | 3 +++ meta/rice/cpufetch/default.nix | 5 +++++ meta/rice/default.nix | 9 +++++++++ meta/rice/fastfetch/default.nix | 34 ++++++++++++++++++++++++++++++++++ meta/rice/iotop/default.nix | 5 +++++ 6 files changed, 59 insertions(+) create mode 100644 meta/rice/bottom/default.nix create mode 100644 meta/rice/btop/default.nix create mode 100644 meta/rice/cpufetch/default.nix create mode 100644 meta/rice/default.nix create mode 100644 meta/rice/fastfetch/default.nix create mode 100644 meta/rice/iotop/default.nix (limited to 'meta/rice') diff --git a/meta/rice/bottom/default.nix b/meta/rice/bottom/default.nix new file mode 100644 index 0000000..9248e3d --- /dev/null +++ b/meta/rice/bottom/default.nix @@ -0,0 +1,3 @@ +{ pkgs, ... }: { + programs.bottom.enable = true; +} diff --git a/meta/rice/btop/default.nix b/meta/rice/btop/default.nix new file mode 100644 index 0000000..d483420 --- /dev/null +++ b/meta/rice/btop/default.nix @@ -0,0 +1,3 @@ +{ pkgs, ... }: { + programs.btop.enable = true; +} diff --git a/meta/rice/cpufetch/default.nix b/meta/rice/cpufetch/default.nix new file mode 100644 index 0000000..b045b4a --- /dev/null +++ b/meta/rice/cpufetch/default.nix @@ -0,0 +1,5 @@ +{ pkgs, ... }: { + home.packages = with pkgs; [ + cpufetch + ]; +} diff --git a/meta/rice/default.nix b/meta/rice/default.nix new file mode 100644 index 0000000..56e4bc1 --- /dev/null +++ b/meta/rice/default.nix @@ -0,0 +1,9 @@ +_: { + imports = [ + ./bottom + ./btop + ./cpufetch + ./fastfetch + ./iotop + ]; +} diff --git a/meta/rice/fastfetch/default.nix b/meta/rice/fastfetch/default.nix new file mode 100644 index 0000000..8ae6284 --- /dev/null +++ b/meta/rice/fastfetch/default.nix @@ -0,0 +1,34 @@ +{ pkgs, ... }: { + programs.fastfetch = { + enable = true; + + settings = { + logo = { + source = "~/Downloads/91363-1550240807.png"; + width = 30; + + padding = { + top = 0; + }; + }; + + modules = [ + "title" + "break" + "os" + "kernel" + "uptime" + "packages" + "shell" + "de" + "wm" + "terminal" + "cpu" + "gpu" + "memory" + "break" + "colors" + ]; + }; + }; +} diff --git a/meta/rice/iotop/default.nix b/meta/rice/iotop/default.nix new file mode 100644 index 0000000..a219adc --- /dev/null +++ b/meta/rice/iotop/default.nix @@ -0,0 +1,5 @@ +{ pkgs, ... }: { + home.packages = with pkgs; [ + iotop + ]; +} -- cgit v1.2.3