summaryrefslogtreecommitdiff
path: root/home/ebisu/core/rice/fastfetch.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-03 02:35:16 -0700
committerFuwn <[email protected]>2024-10-03 02:35:16 -0700
commit97bbd863c5e6102e36ffdd36a9aecd2882485106 (patch)
tree676fcd635699fa4e84c6d067ae9ed2b0eb3cae09 /home/ebisu/core/rice/fastfetch.nix
parenthosts: use common wording instead of default (diff)
downloadnixos-config-97bbd863c5e6102e36ffdd36a9aecd2882485106.tar.xz
nixos-config-97bbd863c5e6102e36ffdd36a9aecd2882485106.zip
home: moves some modules to core
Diffstat (limited to 'home/ebisu/core/rice/fastfetch.nix')
-rw-r--r--home/ebisu/core/rice/fastfetch.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/home/ebisu/core/rice/fastfetch.nix b/home/ebisu/core/rice/fastfetch.nix
new file mode 100644
index 0000000..8020e57
--- /dev/null
+++ b/home/ebisu/core/rice/fastfetch.nix
@@ -0,0 +1,32 @@
+{ config, flakeDirectory, ... }:
+{
+ programs.fastfetch = {
+ enable = true;
+
+ settings = {
+ logo = {
+ source = "${flakeDirectory}/home/${config.home.username}/logo.png";
+ width = 30;
+ padding.top = 0;
+ };
+
+ modules = [
+ "title"
+ "break"
+ "os"
+ "kernel"
+ "uptime"
+ "packages"
+ "shell"
+ "de"
+ "wm"
+ "terminal"
+ "cpu"
+ "gpu"
+ "memory"
+ "break"
+ "colors"
+ ];
+ };
+ };
+}