Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
18417731d6
|
@@ -96,7 +96,8 @@
|
|||||||
flake-utils.lib.eachDefaultSystem (
|
flake-utils.lib.eachDefaultSystem (
|
||||||
system: let
|
system: let
|
||||||
inherit (self) outputs;
|
inherit (self) outputs;
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
|
||||||
|
pkgs = import nixpkgs {inherit system;};
|
||||||
in {
|
in {
|
||||||
formatter = pkgs.alejandra;
|
formatter = pkgs.alejandra;
|
||||||
devShells.default = pkgs.mkShell {
|
devShells.default = pkgs.mkShell {
|
||||||
@@ -111,7 +112,7 @@
|
|||||||
packages = {
|
packages = {
|
||||||
homeConfigurations = let
|
homeConfigurations = let
|
||||||
extraSpecialArgs = {inherit inputs outputs system;};
|
extraSpecialArgs = {inherit inputs outputs system;};
|
||||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
pkgs = import nixpkgs {inherit system;};
|
||||||
defaultUserModules = [
|
defaultUserModules = [
|
||||||
inputs.sops-nix.homeManagerModules.sops
|
inputs.sops-nix.homeManagerModules.sops
|
||||||
inputs.spicetify.homeManagerModules.default
|
inputs.spicetify.homeManagerModules.default
|
||||||
|
|||||||
@@ -1,50 +0,0 @@
|
|||||||
{
|
|
||||||
inputs,
|
|
||||||
lib,
|
|
||||||
config,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
imports = [./helpers.nix];
|
|
||||||
|
|
||||||
config = {
|
|
||||||
flake = {
|
|
||||||
nixosConfigurations = lib.mkMerge [
|
|
||||||
(config.flake.lib.mkNixos "x86_64-linux" "alys")
|
|
||||||
(config.flake.lib.mkNixos "x86_64-linux" "elcafe")
|
|
||||||
(config.flake.lib.mkNixos "x86_64-linux" "gampo")
|
|
||||||
(config.flake.lib.mkNixos "x86_64-linux" "marpa")
|
|
||||||
(config.flake.lib.mkNixos "x86_64-linux" "NaroMk3")
|
|
||||||
(config.flake.lib.mkNixos "x86_64-linux" "tilo")
|
|
||||||
(config.flake.lib.mkPinetab "x86_64-linux" [
|
|
||||||
inputs.self.modules.nixos.pinetab2-gnome
|
|
||||||
])
|
|
||||||
];
|
|
||||||
|
|
||||||
homeConfigurations = lib.mkMerge [
|
|
||||||
(config.flake.lib.mkHome "aarch64-linux" "phundrak" "pinetab2")
|
|
||||||
(config.flake.lib.mkHome "x86_64-linux" "creug" "elcafe")
|
|
||||||
(config.flake.lib.mkHome "x86_64-linux" "phundrak" "NaroMk3")
|
|
||||||
(config.flake.lib.mkHome "x86_64-linux" "phundrak" "alys")
|
|
||||||
(config.flake.lib.mkHome "x86_64-linux" "phundrak" "elcafe")
|
|
||||||
(config.flake.lib.mkHome "x86_64-linux" "phundrak" "gampo")
|
|
||||||
(config.flake.lib.mkHome "x86_64-linux" "phundrak" "marpa")
|
|
||||||
(config.flake.lib.mkHome "x86_64-linux" "phundrak" "tilo")
|
|
||||||
];
|
|
||||||
};
|
|
||||||
perSystem = {
|
|
||||||
config',
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
formatter = pkgs.alejandra;
|
|
||||||
devShells.default = pkgs.mkShell {
|
|
||||||
buildInputs = with pkgs; [
|
|
||||||
nh
|
|
||||||
jujutsu
|
|
||||||
git
|
|
||||||
inputs.jj-cz.packages.${config'.system}.default
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
imports = [./home-manager.nix];
|
|
||||||
}
|
|
||||||
@@ -1,81 +0,0 @@
|
|||||||
{
|
|
||||||
inputs,
|
|
||||||
lib,
|
|
||||||
...
|
|
||||||
}: let
|
|
||||||
settingsToLines = with lib;
|
|
||||||
settings:
|
|
||||||
concatStringsSep "\n" (
|
|
||||||
mapAttrsToList (name: value: "set ${name} ${toString value}") settings
|
|
||||||
);
|
|
||||||
in {
|
|
||||||
flake-file.inputs.zen-browser = {
|
|
||||||
url = "github:youwen5/zen-browser-flake";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
|
|
||||||
flake.modules.homeManager.firefox = {
|
|
||||||
config,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
with lib; let
|
|
||||||
cfg = config.flake.options.firefox;
|
|
||||||
inherit (pkgs.stdenv.hostPlatform) system;
|
|
||||||
zen = inputs.zen-browser.packages.${system}.default;
|
|
||||||
in {
|
|
||||||
options.flake.options.firefox = {
|
|
||||||
enable = mkEnableOption "enable Firefox";
|
|
||||||
useZen = mkEnableOption "use Zen instead of Firefox";
|
|
||||||
tridactyl = {
|
|
||||||
enable = mkEnableOption "enable Tridactyl";
|
|
||||||
preConfig = mkOption {
|
|
||||||
description = "Lines to add to the beginning of tridactylrc";
|
|
||||||
type = types.lines;
|
|
||||||
default = "";
|
|
||||||
};
|
|
||||||
config = mkOption {
|
|
||||||
type = with types;
|
|
||||||
attrsOf (oneOf [int str bool]);
|
|
||||||
description = "Tridactyl settings (converted to 'set key value' lines)";
|
|
||||||
default = {};
|
|
||||||
example = {
|
|
||||||
smoothscroll = true;
|
|
||||||
history = 1000;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
extraConfig = mkOption {
|
|
||||||
description = "Extra lines to add to tridactylrc (for bindings, autocmds, etc)";
|
|
||||||
type = types.lines;
|
|
||||||
default = "";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
home.sessionVariables.MOZ_ENABLE_WAYLAND = "1";
|
|
||||||
programs.firefox = {
|
|
||||||
inherit (cfg) enable;
|
|
||||||
package =
|
|
||||||
if cfg.useZen
|
|
||||||
then zen
|
|
||||||
else pkgs.firefox;
|
|
||||||
nativeMessagingHosts = lists.optional cfg.tridactyl.enable pkgs.tridactyl-native;
|
|
||||||
configPath = ".mozilla/firefox";
|
|
||||||
};
|
|
||||||
xdg.configFile."tridactyl/tridactylrc" = mkIf cfg.tridactyl.enable {
|
|
||||||
text = concatStringsSep "\n" (filter (s: s != "") [
|
|
||||||
cfg.tridactyl.preConfig
|
|
||||||
(settingsToLines (cfg.tridactyl.config
|
|
||||||
// {
|
|
||||||
browser =
|
|
||||||
if cfg.useZen
|
|
||||||
then "zen"
|
|
||||||
else "firefox";
|
|
||||||
}))
|
|
||||||
cfg.tridactyl.extraConfig
|
|
||||||
]);
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
flake.modules.nixos.amdgpu = ./nixos.nix;
|
|
||||||
}
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
{pkgs, ...}: {
|
|
||||||
hardware = {
|
|
||||||
graphics = {
|
|
||||||
enable = true;
|
|
||||||
enable32Bit = true;
|
|
||||||
extraPackages = with pkgs; [
|
|
||||||
mesa rocmPackages.clr rocmPackages.clr.icd rocmPackages.rocblas
|
|
||||||
rocmPackages.hipblas rocmPackages.rpp nvtopPackages.amd
|
|
||||||
];
|
|
||||||
};
|
|
||||||
amdgpu = { initrd.enable = true; opencl.enable = true; };
|
|
||||||
};
|
|
||||||
environment.systemPackages = with pkgs; [ clinfo amdgpu_top nvtopPackages.amd ];
|
|
||||||
systemd = {
|
|
||||||
packages = with pkgs; [ lact ];
|
|
||||||
services.lactd.wantedBy = [ "multi-user.target" ];
|
|
||||||
tmpfiles.rules = let
|
|
||||||
rocmEnv = pkgs.symlinkJoin {
|
|
||||||
name = "rocm-combined";
|
|
||||||
paths = with pkgs.rocmPackages; [ clr clr.icd rocblas hipblas rpp ];
|
|
||||||
};
|
|
||||||
in [ "L+ /opt/rocm - - - - ${rocmEnv}" ];
|
|
||||||
};
|
|
||||||
environment.variables = {
|
|
||||||
ROCM_PATH = "/opt/rocm";
|
|
||||||
HIP_VISIBLE_DEVICES = "1";
|
|
||||||
ROCM_VISIBLE_DEVICES = "1";
|
|
||||||
HSA_OVERRIDE_GFX_VERSION = "10.3.0";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
{inputs, ...}:
|
|
||||||
{
|
|
||||||
flake-file.inputs = {
|
|
||||||
rockchip = {
|
|
||||||
url = "github:raboof/nixos-rockchip/pinetab-linux-7.0";
|
|
||||||
inputs.utils.follows = "flake-utils";
|
|
||||||
inputs.nixpkgsStable.follows = "nixpkgsStable";
|
|
||||||
inputs.nixpkgsUnstable.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
flake-utils.url = "github:numtide/flake-utils";
|
|
||||||
};
|
|
||||||
|
|
||||||
config.flake.factory.pinetab2 = buildPlatform: variantModules: {
|
|
||||||
nixos.pinetab2 = {
|
|
||||||
imports = [
|
|
||||||
inputs.rockchip.nixosModules.sdImageRockchip
|
|
||||||
inputs.rockchip.nixosModules.dtOverlayPCIeFix
|
|
||||||
inputs.rockchip.nixosModules.noZFS
|
|
||||||
inputs.self.modules.nixos.pinetab2-base
|
|
||||||
] ++ variantModules;
|
|
||||||
rockchip.uBoot = inputs.rockchip.packages.${buildPlatform}.uBootPineTab2;
|
|
||||||
boot.kernelPackages =
|
|
||||||
inputs.rockchip.legacyPackages.${buildPlatform}.kernel_linux_7_0_pinetab_unstable;
|
|
||||||
hardware.firmware = [ inputs.rockchip.packages.aarch64-linux.bes2600 ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,48 +0,0 @@
|
|||||||
{
|
|
||||||
inputs,
|
|
||||||
lib,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
config.flake.lib = {
|
|
||||||
mkNixos = system: name: {
|
|
||||||
${name} = inputs.nixpkgs.lib.nixosSystem {
|
|
||||||
modules = [
|
|
||||||
inputs.self.modules.nixos.${name}
|
|
||||||
{nixpkgs.hostPlatform = lib.mkDefault system;}
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
mkHome = system: username: hostname: {
|
|
||||||
"${username}@${hostname}" = inputs.home-manager.lib.homeManagerConfiguration {
|
|
||||||
pkgs = inputs.nixpkgs.legacyPackages.${system};
|
|
||||||
extraSpecialArgs = {inherit inputs;};
|
|
||||||
modules = [inputs.self.modules.homeManager.${username}.${hostname}];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
mkPinetab = buildPlatform: variantModules: {
|
|
||||||
pinetab2 = inputs.nixpkgs.lib.nixosSystem {
|
|
||||||
system = "aarch64-linux";
|
|
||||||
modules =
|
|
||||||
[
|
|
||||||
inputs.rockchip.nixosModules.sdImageRockchip
|
|
||||||
inputs.rockchip.nixosModules.dtOverlayPCIeFix
|
|
||||||
inputs.rockchip.nixosModules.noZFS
|
|
||||||
inputs.self.modules.nixos.pinetab2-base
|
|
||||||
]
|
|
||||||
++ variantModules
|
|
||||||
++ [
|
|
||||||
{
|
|
||||||
rockchip.uBoot = inputs.rockchip.packages.${buildPlatform}.uBootPineTab2;
|
|
||||||
boot.kernelPackages =
|
|
||||||
inputs.rockchip.legacyPackages.${buildPlatform}.kernel_linux_7_0_pinetab_unstable;
|
|
||||||
hardware.firmware = [inputs.rockchip.packages.aarch64-linux.bes2600];
|
|
||||||
nixpkgs.config.allowUnfreePredicate = pkg:
|
|
||||||
builtins.elem (inputs.nixpkgs.lib.getName pkg) ["bes2600-firmware"];
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
{
|
|
||||||
flake-file = {
|
|
||||||
inputs = {
|
|
||||||
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
|
||||||
nixpkgsStable.url = "nixpkgs/nixos-25.11";
|
|
||||||
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
||||||
flake-file.url = "github:vic/flake-file";
|
|
||||||
import-tree.url = "github:vic/import-tree";
|
|
||||||
home-manager = {
|
|
||||||
url = "github:nix-community/home-manager";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
jj-cz = {
|
|
||||||
url = "git+https://labs.phundrak.com/phundrak/jj-cz?ref=main";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
outputs = "flake-parts";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
{
|
|
||||||
flake.nixConfig = {
|
|
||||||
extra-trusted-public-keys = [
|
|
||||||
"marpa-local:XoO+dFN4PeauF52pYuy3Vh4Sdtl2qIdxu5aUasWKv6Q="
|
|
||||||
"phundrak.cachix.org-1:osJAkYO0ioTOPqaQCIXMfIRz1/+YYlVFkup3R2KSexk="
|
|
||||||
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
|
||||||
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
|
|
||||||
];
|
|
||||||
extra-substituters = [
|
|
||||||
"http://marpa:5000?priority=5"
|
|
||||||
"https://phundrak.cachix.org?priority=10"
|
|
||||||
"https://nix-community.cachix.org?priority=20"
|
|
||||||
"https://cache.nixos.org?priority=40"
|
|
||||||
];
|
|
||||||
extra-experimental-features = [ "nix-command" "flakes" ];
|
|
||||||
http-connections = 128;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
{inputs, ...}:
|
|
||||||
{
|
|
||||||
flake-file.inputs.srvos = {
|
|
||||||
url = "github:nix-community/srvos";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
flake.modules.nixos.hetzner-server = {
|
|
||||||
imports = [
|
|
||||||
inputs.srvos.nixosModules.server
|
|
||||||
inputs.srvos.nixosModules.hardware-hetzner-cloud
|
|
||||||
inputs.srvos.nixosModules.mixins-terminfo
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
{inputs, ...}:
|
|
||||||
{
|
|
||||||
flake-file.inputs.sops-nix = {
|
|
||||||
url = "github:Mic92/sops-nix";
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
};
|
|
||||||
|
|
||||||
flake.modules = {
|
|
||||||
nixos.sops = {
|
|
||||||
imports = [inputs.sops-nix.nixosModules.sops];
|
|
||||||
};
|
|
||||||
homeManager.sops = {
|
|
||||||
imports = [inputs.sops-nix.homeManagerModules.sops];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
{inputs, ...}: {
|
|
||||||
flake.modules = {
|
|
||||||
nixos.phundrak = {
|
|
||||||
imports = [./nixos.nix];
|
|
||||||
home-manager.users.phundrak = {
|
|
||||||
imports = [inputs.self.modules.homeManager.phundrak];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
homeManager.phundrak = {
|
|
||||||
imports = [./homeManager.nix];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
{
|
|
||||||
config,
|
|
||||||
pkgs,
|
|
||||||
lib,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
with lib; let
|
|
||||||
cfg = config.flake.options.phundrak;
|
|
||||||
in {
|
|
||||||
options.flake.options.phundrak = {
|
|
||||||
sudo = mkEnableOption "Make phundrak a superuser";
|
|
||||||
trusted = mkOption {
|
|
||||||
description = "Mark phundrak as trusted by Nix";
|
|
||||||
type = types.bool;
|
|
||||||
default = cfg.sudo;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
config = {
|
|
||||||
users.users.phundrak = {
|
|
||||||
isNormalUser = true;
|
|
||||||
description = "Greg";
|
|
||||||
extraGroups =
|
|
||||||
["networkmanager" "dialout" "games" "audio" "input"]
|
|
||||||
++ optional cfg.sudo "wheel";
|
|
||||||
shell = pkgs.zsh;
|
|
||||||
openssh.authorizedKeys.keyFiles = filesystem.listFilesRecursive ./keys;
|
|
||||||
};
|
|
||||||
nix.settings = mkIf cfg.trusted {
|
|
||||||
trusted-users = ["phundrak"];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,69 @@
|
|||||||
|
# Baseline variant of Bun for x86_64-linux CPUs without AVX2 support.
|
||||||
|
# The regular `bun` from nixpkgs requires AVX2 and crashes with SIGILL on older hardware.
|
||||||
|
#
|
||||||
|
# Version is typically kept in sync with nixpkgs's `bun` (passed via `callPackage`).
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
stdenvNoCC,
|
||||||
|
fetchurl,
|
||||||
|
autoPatchelfHook,
|
||||||
|
unzip,
|
||||||
|
makeBinaryWrapper,
|
||||||
|
glibc,
|
||||||
|
stdenv,
|
||||||
|
version ? "1.3.13",
|
||||||
|
}: let
|
||||||
|
# When updating `version`, compute the new hash with:
|
||||||
|
# nix store prefetch-file \
|
||||||
|
# "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-x64-baseline.zip"
|
||||||
|
hash = "sha256-nYokKSpwaAkCBdqsCloiP19pc29Sh+N7+I07QDHtx1A=";
|
||||||
|
in
|
||||||
|
stdenvNoCC.mkDerivation {
|
||||||
|
pname = "bun-baseline";
|
||||||
|
inherit version;
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-x64-baseline.zip";
|
||||||
|
inherit hash;
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs =
|
||||||
|
[unzip]
|
||||||
|
++ lib.optionals stdenvNoCC.hostPlatform.isLinux [
|
||||||
|
autoPatchelfHook
|
||||||
|
makeBinaryWrapper
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = lib.optionals stdenvNoCC.hostPlatform.isLinux [
|
||||||
|
glibc
|
||||||
|
(lib.getLib stdenv.cc.cc)
|
||||||
|
];
|
||||||
|
|
||||||
|
dontConfigure = true;
|
||||||
|
dontBuild = true;
|
||||||
|
|
||||||
|
unpackPhase = ''
|
||||||
|
runHook preUnpack
|
||||||
|
mkdir -p source
|
||||||
|
cd source
|
||||||
|
${lib.getExe unzip} -q $src
|
||||||
|
runHook postUnpack
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
mkdir -p $out/bin
|
||||||
|
find . -type f -name "bun" -not -path "./__MACOSX/*" -exec cp {} $out/bin/bun \;
|
||||||
|
chmod +x $out/bin/bun
|
||||||
|
ln -s $out/bin/bun $out/bin/bunx
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Bun JavaScript runtime (baseline variant, works without AVX2)";
|
||||||
|
homepage = "https://bun.sh";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
platforms = ["x86_64-linux"];
|
||||||
|
mainProgram = "bun";
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -1,15 +1,39 @@
|
|||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
inputs,
|
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
with lib; let
|
with lib; let
|
||||||
inherit (pkgs.stdenv.hostPlatform) system;
|
|
||||||
cfg = config.home.dev.ai.opencode;
|
cfg = config.home.dev.ai.opencode;
|
||||||
defaultPackageCli = inputs.opencode.packages.${system}.opencode;
|
|
||||||
defaultPackageDesktop = inputs.opencode.packages.${system}.desktop;
|
# On x86_64-linux CPUs without AVX2, use the baseline bun variant
|
||||||
|
# when building opencode - the regular `bun` from nixpkgs requires
|
||||||
|
# AVX2 and crashes on older hardware, such as my Thinkpad x220’s
|
||||||
|
# Intel Core i5 2640M.
|
||||||
|
needsBaselineBun =
|
||||||
|
pkgs.stdenv.hostPlatform.isx86_64 && !pkgs.stdenv.hostPlatform.avx2Support;
|
||||||
|
|
||||||
|
defaultPackageCli =
|
||||||
|
if needsBaselineBun
|
||||||
|
then
|
||||||
|
pkgs.opencode.override {
|
||||||
|
bun = pkgs.callPackage ../../../../packages/bun-baseline.nix {
|
||||||
|
version = pkgs.bun.version;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
else pkgs.opencode;
|
||||||
|
|
||||||
|
defaultPackageDesktop =
|
||||||
|
if needsBaselineBun
|
||||||
|
then
|
||||||
|
pkgs.opencode-desktop.override {
|
||||||
|
bun = pkgs.callPackage ../../../../packages/bun-baseline.nix {
|
||||||
|
version = pkgs.bun.version;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
else pkgs.opencode-desktop;
|
||||||
|
|
||||||
corsList = domains: lists.remove "" (lists.forEach (strings.splitString "," domains) trim);
|
corsList = domains: lists.remove "" (lists.forEach (strings.splitString "," domains) trim);
|
||||||
in {
|
in {
|
||||||
options.home.dev.ai.opencode = {
|
options.home.dev.ai.opencode = {
|
||||||
@@ -66,9 +90,9 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
config.programs.opencode = mkIf cfg.enable {
|
config.programs.opencode = mkIf cfg.enable {
|
||||||
inherit (cfg) enable tui;
|
inherit (cfg) enable tui package;
|
||||||
enableMcpIntegration = true;
|
enableMcpIntegration = true;
|
||||||
extraPackages = with pkgs; [uv];
|
extraPackages = with pkgs; [uv] ++ lists.optional cfg.desktop.enable cfg.desktop.package;
|
||||||
settings =
|
settings =
|
||||||
{
|
{
|
||||||
server = mkIf cfg.web.mdns.enable {
|
server = mkIf cfg.web.mdns.enable {
|
||||||
|
|||||||
Reference in New Issue
Block a user