summaryrefslogtreecommitdiffstats
path: root/fastfetch.nix
diff options
context:
space:
mode:
authorAndrew <admonty1@protonmail.com>2025-08-18 15:40:09 -0400
committerAndrew <admonty1@protonmail.com>2025-08-18 15:40:09 -0400
commit16c0b7ce0cf0a6286554a3bbe60c636871fb75c9 (patch)
treeef38bd560f9c08121c4c567997a22359c22b7582 /fastfetch.nix
downloadnixos-16c0b7ce0cf0a6286554a3bbe60c636871fb75c9.tar.gz
nixos-16c0b7ce0cf0a6286554a3bbe60c636871fb75c9.tar.bz2
nixos-16c0b7ce0cf0a6286554a3bbe60c636871fb75c9.zip
initial commit
Diffstat (limited to '')
-rw-r--r--fastfetch.nix42
1 files changed, 42 insertions, 0 deletions
diff --git a/fastfetch.nix b/fastfetch.nix
new file mode 100644
index 0000000..5f7a348
--- /dev/null
+++ b/fastfetch.nix
@@ -0,0 +1,42 @@
+{ config, pkgs, ... }:
+
+{
+ programs.fastfetch = {
+ enable = true;
+ settings = {
+ logo = {
+ padding = {
+ right = 1;
+ };
+ };
+ modules = [
+ "title"
+ "separator"
+ "os"
+ "host"
+ "kernel"
+ "uptime"
+ "datetime"
+ "packages"
+ "shell"
+ "display"
+ "de"
+ "wm"
+ "theme"
+ "icons"
+ "terminal"
+ "terminalfont"
+ "cpu"
+ "gpu"
+ "memory"
+ "swap"
+ "disk"
+ "battery"
+ "poweradapter"
+ "font"
+ "cursor"
+ "colors"
+ ];
+ };
+ };
+}