summaryrefslogtreecommitdiff
path: root/meta/rice
diff options
context:
space:
mode:
Diffstat (limited to 'meta/rice')
-rw-r--r--meta/rice/bottom/default.nix3
-rw-r--r--meta/rice/btop/default.nix3
-rw-r--r--meta/rice/cpufetch/default.nix5
-rw-r--r--meta/rice/default.nix9
-rw-r--r--meta/rice/fastfetch/default.nix34
-rw-r--r--meta/rice/iotop/default.nix5
6 files changed, 59 insertions, 0 deletions
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
+ ];
+}