From 096124c04a6aea2361e67bf9776b02171ecc9155 Mon Sep 17 00:00:00 2001 From: Bernardo Magri Date: Mon, 13 Apr 2026 21:19:42 +0100 Subject: [PATCH] fix: resolve makima 404 and undefined overridesDir variable --- core/home/behavior.nix | 1 + flake.nix | 8 ++------ 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/core/home/behavior.nix b/core/home/behavior.nix index a8c57b2..49f955a 100644 --- a/core/home/behavior.nix +++ b/core/home/behavior.nix @@ -16,6 +16,7 @@ let configDir = ./config; + overridesDir = "${config.home.homeDirectory}/.config/nomarchy/overrides"; # Behavior config categories with their source paths behaviorConfigs = { diff --git a/flake.nix b/flake.nix index ce86d4c..0cfb855 100644 --- a/flake.nix +++ b/flake.nix @@ -32,17 +32,13 @@ url = "github:abenz1267/walker"; inputs.nixpkgs.follows = "nixpkgs"; }; - makima = { - url = "github:fujiapple86/makima"; - inputs.nixpkgs.follows = "nixpkgs"; - }; }; - outputs = { self, nixpkgs, nixos-hardware, disko, impermanence, home-manager, nix-colors, stylix, walker, makima, ... } @ inputs: let + outputs = { self, nixpkgs, nixos-hardware, disko, impermanence, home-manager, nix-colors, stylix, walker, ... } @ inputs: let # Overlays overlays = [ (final: prev: { - makima-bin = makima.packages.${prev.system}.default; + makima-bin = prev.makima; nomarchy-system-scripts = final.callPackage ./core/system/scripts-derivation.nix { }; }) ];