aboutsummaryrefslogtreecommitdiff
path: root/nixos/.flake/home/programs/fastfetch.org
diff options
context:
space:
mode:
authorJacob Janzen <jacob.a.s.janzen@gmail.com>2024-09-28 00:01:09 -0500
committerJacob Janzen <jacob.a.s.janzen@gmail.com>2024-09-28 00:01:09 -0500
commitb7e84fa6048007cda7e6c8226e28bc2db90f792a (patch)
tree170bcaff17d7aec0c6aac5807c7a5857dbd71def /nixos/.flake/home/programs/fastfetch.org
parent7b2986845fde19db57703dad1105359913486abd (diff)
add file extensions to files
Diffstat (limited to 'nixos/.flake/home/programs/fastfetch.org')
-rw-r--r--nixos/.flake/home/programs/fastfetch.org84
1 files changed, 0 insertions, 84 deletions
diff --git a/nixos/.flake/home/programs/fastfetch.org b/nixos/.flake/home/programs/fastfetch.org
deleted file mode 100644
index 96b2044..0000000
--- a/nixos/.flake/home/programs/fastfetch.org
+++ /dev/null
@@ -1,84 +0,0 @@
-#+title: Fastfetch Configuration
-
-Specify the layout for =fastfetch=.
-#+begin_src nix :tangle ~/.flake/home/programs/fastfetch.nix :mkdirp yes
- { config, pkgs, ... }:
-
- {
- programs.fastfetch = {
- enable = true;
- settings = {
- logo = {
- type = "raw";
- source = "~/.config/fastfetch/logo.sixel";
- width = 40;
- height = 19;
- };
- display = {
- separator = " ";
- };
- modules = [
- "title"
- {
- type = "custom";
- format = "──────────────────────────────────";
- }
- {
- type = "os";
- key = "";
- }
- {
- type = "kernel";
- key = "󰞸";
- }
- {
- type = "uptime";
- key = "";
- }
- {
- type = "packages";
- key = "";
- }
- {
- type = "shell";
- key = "";
- }
- {
- type = "display";
- key = "󰍹";
- }
- {
- type = "wm";
- key = "";
- }
- {
- type = "terminal";
- key = "";
- }
- {
- type = "cpu";
- key = "";
- }
- {
- type = "gpu";
- key = "";
- }
- {
- type = "memory";
- key = "";
- }
- {
- type = "disk";
- key = "";
- }
- {
- type = "locale";
- key = "";
- }
- "break"
- "colors"
- ];
- };
- };
- }
-#+end_src