refactor: further progress

This commit is contained in:
2026-04-25 00:19:20 +02:00
parent 55fbe82a42
commit 0500aab3cb
31 changed files with 680 additions and 398 deletions
+5 -4
View File
@@ -1,18 +1,19 @@
{ config, ... }:
let
metaRepo = config.meta.lib.repo;
repo = config.repo;
repoHelpers = repo.helpers;
in
{
flake.modules.homeManager.local-apps =
{ pkgs, ... }:
let
browserPackage = config.meta.lib.resolvePackagePath {
browserPackage = repoHelpers.resolvePackagePath {
inherit pkgs;
path = metaRepo.desktop.browser.packagePath;
path = repo.desktop.browser.packagePath;
};
in
{
home.sessionVariables.BROWSER = metaRepo.desktop.browser.command;
home.sessionVariables.BROWSER = repo.desktop.browser.command;
home.packages =
with pkgs;