From 7e09e3b5ed7258f4a12e5818cbd4631858879932 Mon Sep 17 00:00:00 2001 From: "sascha.koenig" Date: Mon, 30 Mar 2026 19:04:09 +0200 Subject: [PATCH] feat: move opencode config into m3ta-nixpkgs --- flake.nix | 1 + modules/home-manager/coding/default.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/flake.nix b/flake.nix index 73ca845..441c992 100644 --- a/flake.nix +++ b/flake.nix @@ -78,6 +78,7 @@ homeManagerModules = { default = import ./modules/home-manager; ports = import ./modules/home-manager/ports.nix; + opencode = import ./modules/home-manager/coding/opencode.nix; zellij-ps = import ./modules/home-manager/zellij-ps.nix; }; diff --git a/modules/home-manager/coding/default.nix b/modules/home-manager/coding/default.nix index bfb28a0..a20a685 100644 --- a/modules/home-manager/coding/default.nix +++ b/modules/home-manager/coding/default.nix @@ -2,5 +2,6 @@ { imports = [ ./editors.nix + ./opencode.nix ]; }