up
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
@@ -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";
|
||||||
|
|||||||
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user