From e8077fde966e051fc449fffcfa061c7f7edc47b0 Mon Sep 17 00:00:00 2001 From: Caroline Larimore Date: Mon, 14 Apr 2025 19:01:38 -0700 Subject: migration: finalize --- .../modules/home/apps/fastfetch/assets/mem.png | Bin 185313 -> 0 bytes .../modules/home/apps/fastfetch/assets/nonon.png | Bin 108707 -> 0 bytes .../modules/home/apps/fastfetch/assets/ryo.png | Bin 128547 -> 0 bytes snowfall/modules/home/apps/fastfetch/default.nix | 81 --------------------- 4 files changed, 81 deletions(-) delete mode 100644 snowfall/modules/home/apps/fastfetch/assets/mem.png delete mode 100644 snowfall/modules/home/apps/fastfetch/assets/nonon.png delete mode 100644 snowfall/modules/home/apps/fastfetch/assets/ryo.png delete mode 100644 snowfall/modules/home/apps/fastfetch/default.nix (limited to 'snowfall/modules/home/apps/fastfetch') diff --git a/snowfall/modules/home/apps/fastfetch/assets/mem.png b/snowfall/modules/home/apps/fastfetch/assets/mem.png deleted file mode 100644 index 999c4dd..0000000 Binary files a/snowfall/modules/home/apps/fastfetch/assets/mem.png and /dev/null differ diff --git a/snowfall/modules/home/apps/fastfetch/assets/nonon.png b/snowfall/modules/home/apps/fastfetch/assets/nonon.png deleted file mode 100644 index 57056ce..0000000 Binary files a/snowfall/modules/home/apps/fastfetch/assets/nonon.png and /dev/null differ diff --git a/snowfall/modules/home/apps/fastfetch/assets/ryo.png b/snowfall/modules/home/apps/fastfetch/assets/ryo.png deleted file mode 100644 index 852df37..0000000 Binary files a/snowfall/modules/home/apps/fastfetch/assets/ryo.png and /dev/null differ diff --git a/snowfall/modules/home/apps/fastfetch/default.nix b/snowfall/modules/home/apps/fastfetch/default.nix deleted file mode 100644 index aa901e6..0000000 --- a/snowfall/modules/home/apps/fastfetch/default.nix +++ /dev/null @@ -1,81 +0,0 @@ -{ options, config, lib, pkgs, namespace, ... }: - -with lib; with lib.${namespace}; let - cfg = config.${namespace}.apps.fastfetch; -in { - options.${namespace}.apps.fastfetch = with types; { - enable = mkEnableOption "fastfetch"; - }; - - config = mkIf cfg.enable { - programs.fastfetch = { - enable = true; - package = (pkgs.fastfetch.overrideAttrs (finalAttrs: previousAttrs: { - cmakeFlags = [(cmakeBool "ENABLE_IMAGEMAGICK6" true)]; - })); - - settings = { - logo = { - type = "kitty-direct"; - source = "$(ls ${./assets}/*.png | shuf -n 1)"; - - width = 36; - height = 32; - - padding = { - left = 4; - right = 4; - }; - }; - - display = { - separator = ""; - }; - - modules = [ - { type = "custom"; format = " ハードウェア "; } - { type = "custom"; format = "┌──────────────────────────────────────────────────┐"; } - - { type = "cpu"; key = " CPU "; } - { type = "gpu"; key = " GPU "; format = "{2} [{6}]"; } - { type = "memory"; key = " MEM "; } - "break" - { - type = "disk"; - folders = "/nix:/persist"; - key = " 󰋊 "; - } - - { type = "custom"; format = "└──────────────────────────────────────────────────┘"; } - "break" - - { type = "custom"; format = " ソフトウェア "; } - { type = "custom"; format = "┌──────────────────────────────────────────────────┐"; } - - { type = "title"; key = " 󰁥 "; format = "{1}@{2}"; } - "break" - { type = "os"; key = "  "; } - { type = "kernel"; key = " 󰌽 "; format = "{1} {2}"; } - { type = "packages"; key = " 󰆧 "; } - "break" - { type = "terminal"; key = "  "; } - { type = "shell"; key = " 󱆃 "; } - # { type = "font"; key = " 󰬈 "; } - { type = "font"; key = " 󰬈 "; format = "Caskaydia Mono (8pt)"; } - "break" - { type = "wm"; key = "  "; } - # { type = "theme"; key = " 󰏘 "; } - { type = "theme"; key = " 󰏘 "; format = "gruvbox"; } - "break" - { type = "media"; key = " 󰝚 "; } - { type = "datetime"; key = " 󰃰 "; } - - { type = "custom"; format = "└──────────────────────────────────────────────────┘"; } - "break" - - "colors" - ]; - }; - }; - }; -} -- cgit v1.2.3