Commit 13e842a

HPCesia <me@hpcesia.com>
2025-06-17 14:22:40
feat(app): add fastfetch config
1 parent ed1d4bf
Changed files (4)
home/base/tui/fastfetch.nix
@@ -0,0 +1,32 @@
+{...}: {
+  programs.fastfetch = {
+    enable = true;
+    settings = {
+      modules = [
+        "title"
+        "separator"
+        "os"
+        "host"
+        "kernel"
+        "uptime"
+        "shell"
+        "display"
+        "de"
+        "wm"
+        "font"
+        "terminal"
+        "cpu"
+        "gpu"
+        "memory"
+        "swap"
+        "disk"
+        "localip"
+        "battery"
+        "poweradapter"
+        "locale"
+        "break"
+        "colors"
+      ];
+    };
+  };
+}
hosts/chaser-kevin/home.nix
@@ -1,4 +1,4 @@
-{...}: {
+{nixos-logo, ...}: {
   # Power Control
   programs.plasma.powerdevil = {
     AC.inhibitLidActionWhenExternalMonitorConnected = true;
@@ -45,4 +45,11 @@
       inhibitLidActionWhenExternalMonitorConnected = true;
     };
   };
+
+  programs.fastfetch.settings.logo = {
+    type = "kitty-direct";
+    source = "${nixos-logo}/nixos-griseo.png";
+    height = 15;
+    width = 32;
+  };
 }
flake.lock
@@ -97,6 +97,22 @@
         "type": "github"
       }
     },
+    "nixos-logo": {
+      "flake": false,
+      "locked": {
+        "lastModified": 1750165136,
+        "narHash": "sha256-0dCNSCCNE6kYUp7XiNWQZp0mY9a3/XDVBnWs7X72eSA=",
+        "owner": "HPCesia",
+        "repo": "nixos-logo",
+        "rev": "d6ffde4c7bf7cbcdadeca42ede2010e4b3e3a957",
+        "type": "github"
+      },
+      "original": {
+        "owner": "HPCesia",
+        "repo": "nixos-logo",
+        "type": "github"
+      }
+    },
     "nixpkgs": {
       "locked": {
         "lastModified": 1744463964,
@@ -232,6 +248,7 @@
         "haumea": "haumea",
         "home-manager": "home-manager",
         "nixos-hardware": "nixos-hardware",
+        "nixos-logo": "nixos-logo",
         "nixpkgs": "nixpkgs_2",
         "nixpkgs-stable": "nixpkgs-stable",
         "nixpkgs-unstable": "nixpkgs-unstable",
flake.nix
@@ -48,5 +48,10 @@
       url = "github:HPCesia/Wallpapers";
       flake = false;
     };
+
+    nixos-logo = {
+      url = "github:HPCesia/nixos-logo";
+      flake = false;
+    };
   };
 }