From 5a7dacbaab382c64447bf5cb3405787fad68399f Mon Sep 17 00:00:00 2001 From: Gene Liverman Date: Sat, 16 Dec 2023 09:14:06 -0500 Subject: [PATCH] Update code based on upstream changes --- flake.nix | 2 +- modules/home-manager/default.nix | 15 +++++++++------ 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/flake.nix b/flake.nix index a45f4c0..545ec6f 100644 --- a/flake.nix +++ b/flake.nix @@ -44,7 +44,7 @@ config = { allowUnfree = true; permittedInsecurePackages = [ - "python-2.7.18.6" + "python-2.7.18.7" ]; }; }; diff --git a/modules/home-manager/default.nix b/modules/home-manager/default.nix index e8910f7..7ee8bed 100644 --- a/modules/home-manager/default.nix +++ b/modules/home-manager/default.nix @@ -45,12 +45,15 @@ theme = "Catppuccin-frappe"; }; themes = { - Catppuccin-frappe = builtins.readFile (pkgs.fetchFromGitHub { - owner = "catppuccin"; - repo = "bat"; - rev = "ba4d16880d63e656acced2b7d4e034e4a93f74b1"; - hash = "sha256-6WVKQErGdaqb++oaXnY3i6/GuH2FhTgK0v4TN4Y0Wbw="; - } + "/Catppuccin-frappe.tmTheme"); + Catppuccin-frappe = { + src = pkgs.fetchFromGitHub { + owner = "catppuccin"; + repo = "bat"; + rev = "ba4d16880d63e656acced2b7d4e034e4a93f74b1"; + hash = "sha256-6WVKQErGdaqb++oaXnY3i6/GuH2FhTgK0v4TN4Y0Wbw="; + }; + file = "Catppuccin-frappe.tmTheme"; + }; }; }; eza.enable = true;