summaryrefslogtreecommitdiff
path: root/rice
diff options
context:
space:
mode:
Diffstat (limited to 'rice')
-rw-r--r--rice/bottom/default.nix1
-rw-r--r--rice/default.nix3
-rw-r--r--rice/fastfetch/default.nix31
3 files changed, 35 insertions, 0 deletions
diff --git a/rice/bottom/default.nix b/rice/bottom/default.nix
new file mode 100644
index 0000000..3d6066b
--- /dev/null
+++ b/rice/bottom/default.nix
@@ -0,0 +1 @@
+{ pkgs, ... }: { programs.bottom.enable = true; }
diff --git a/rice/default.nix b/rice/default.nix
new file mode 100644
index 0000000..0d8cb82
--- /dev/null
+++ b/rice/default.nix
@@ -0,0 +1,3 @@
+_: {
+ imports = [ ./bottom ./fastfetch ];
+}
diff --git a/rice/fastfetch/default.nix b/rice/fastfetch/default.nix
new file mode 100644
index 0000000..ba325d2
--- /dev/null
+++ b/rice/fastfetch/default.nix
@@ -0,0 +1,31 @@
+{ 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"
+ ];
+ };
+ };
+}