From 6339b733c419835ae21de2c4b224a2e0015154a1 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Thu, 2 Oct 2025 19:45:37 +0200 Subject: [PATCH] feat: nb update coding config --- hosts/nb/modules/desktop/default.nix | 4 ---- hosts/nb/modules/development/coding.nix | 10 ++++++---- hosts/nb/modules/development/default.nix | 2 ++ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/hosts/nb/modules/desktop/default.nix b/hosts/nb/modules/desktop/default.nix index 0605a20..9403117 100644 --- a/hosts/nb/modules/desktop/default.nix +++ b/hosts/nb/modules/desktop/default.nix @@ -37,10 +37,6 @@ in { variants = ["qt5"]; }) - vscode - code-cursor - - dracula-theme foot fractal diff --git a/hosts/nb/modules/development/coding.nix b/hosts/nb/modules/development/coding.nix index af37c38..c45ac94 100644 --- a/hosts/nb/modules/development/coding.nix +++ b/hosts/nb/modules/development/coding.nix @@ -1,10 +1,12 @@ { config, pkgs, ... }: let - # unstable = import (fetchTarball https://nixos.org/channels/nixos-unstable/nixexprs.tar.xz) { - # config = { allowUnfree = true; }; - # }; + unstable = import (fetchTarball https://nixos.org/channels/nixos-unstable/nixexprs.tar.xz) { + config = { allowUnfree = true; }; + }; in { environment.systemPackages = with pkgs; [ - claude-code + unstable.claude-code + unstable.code-cursor + unstable.vscode ]; } diff --git a/hosts/nb/modules/development/default.nix b/hosts/nb/modules/development/default.nix index 9ac16a1..75afc24 100644 --- a/hosts/nb/modules/development/default.nix +++ b/hosts/nb/modules/development/default.nix @@ -10,6 +10,7 @@ in { imports = [ # ./mcp.nix ./coding.nix + ./android.nix ./nvim/default.nix ]; environment.systemPackages = with pkgs; [ @@ -37,6 +38,7 @@ in { vim wget wireguard-tools + wkhtmltopdf wol ];