This commit is contained in:
2026-03-08 16:24:24 +00:00
parent 0a955151d0
commit 0aa8606153
3 changed files with 30 additions and 1 deletions

View File

@@ -51,7 +51,7 @@
}; };
home.shellAliases = { home.shellAliases = {
noc = "nono run -s --allow-cwd --profile opencode --network-profile developer -- opencode"; noc = "RUST_LOG=error nono -s wrap --allow-cwd --profile opencode -- opencode";
}; };
home.packages = [ home.packages = [
@@ -85,6 +85,7 @@
builtins.toJSON { builtins.toJSON {
"$schema" = "https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/master/assets/oh-my-opencode.schema.json"; "$schema" = "https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/master/assets/oh-my-opencode.schema.json";
disabled_skills = ["playwright" "dev-browser" "git-master"]; disabled_skills = ["playwright" "dev-browser" "git-master"];
disabled_hooks = ["keyword-detector"];
git_master = { git_master = {
commit_footer = false; commit_footer = false;
include_co_authored_by = false; include_co_authored_by = false;

View File

@@ -14,9 +14,31 @@
type = lib.types.lazyAttrsOf lib.types.raw; type = lib.types.lazyAttrsOf lib.types.raw;
default = {}; default = {};
}; };
flakeModules =
lib.mkOption {
type = lib.types.lazyAttrsOf lib.types.raw;
default = {};
};
}; };
config = { config = {
flake.flakeModules = {
ai-tools = ./ai-tools.nix;
atuin = ./atuin.nix;
core = ./core.nix;
desktop = ./desktop.nix;
dev-tools = ./dev-tools.nix;
email = ./email.nix;
neovim = ./neovim.nix;
network = ./network.nix;
nixos-system = ./nixos-system.nix;
shell = ./shell.nix;
ssh-client = ./ssh-client.nix;
terminal = ./terminal.nix;
user = ./user.nix;
zellij = ./zellij.nix;
zk = ./zk.nix;
};
den.default.nixos.system.stateVersion = "25.11"; den.default.nixos.system.stateVersion = "25.11";
den.default.darwin.system.stateVersion = 6; den.default.darwin.system.stateVersion = 6;
den.default.homeManager.home.stateVersion = "25.11"; den.default.homeManager.home.stateVersion = "25.11";

View File

@@ -50,4 +50,10 @@
in { in {
den.default.nixos.nixpkgs.overlays = overlays; den.default.nixos.nixpkgs.overlays = overlays;
den.default.darwin.nixpkgs.overlays = overlays; den.default.darwin.nixpkgs.overlays = overlays;
flake.overlays.default = final: prev:
builtins.foldl' (
acc: overlay: acc // (overlay final (prev // acc))
) {}
overlays;
} }