changes
This commit is contained in:
10
hosts/nb/modules/coding.nix
Normal file
10
hosts/nb/modules/coding.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{ config, pkgs, ... }:
|
||||
let
|
||||
unstable = import (fetchTarball https://nixos.org/channels/nixos-unstable/nixexprs.tar.xz) {
|
||||
config = { allowUnfree = true; };
|
||||
};
|
||||
in {
|
||||
environment.systemPackages = with pkgs; [
|
||||
unstable.claude-code
|
||||
];
|
||||
}
|
||||
13
hosts/nb/modules/development/default.nix
Normal file
13
hosts/nb/modules/development/default.nix
Normal file
@@ -0,0 +1,13 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
unstable = import (fetchTarball https://nixos.org/channels/nixos-unstable/nixexprs.tar.xz) {
|
||||
config = { allowUnfree = true; };
|
||||
};
|
||||
in {
|
||||
imports = [
|
||||
./mcp.nix
|
||||
];
|
||||
}
|
||||
11
hosts/nb/modules/development/mcp.nix
Normal file
11
hosts/nb/modules/development/mcp.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
{ config, pkgs, lib, ... }:
|
||||
let
|
||||
in {
|
||||
nixpkgs.overlays = [
|
||||
(import (builtins.fetchTarball "https://github.com/natsukium/mcp-servers-nix/archive/main.tar.gz")).overlays.default
|
||||
];
|
||||
environment.systemPackages = with pkgs; [
|
||||
mcp-server-fetch
|
||||
];
|
||||
}
|
||||
@@ -84,6 +84,9 @@ in {
|
||||
hypnotix
|
||||
|
||||
unstable.code-cursor
|
||||
unstable.windsurf
|
||||
unstable.codex
|
||||
# vscode-insiders
|
||||
# unstable.vscode-fhs
|
||||
|
||||
quickemu
|
||||
@@ -139,13 +142,14 @@ in {
|
||||
nextcloud-client
|
||||
nodejs_22
|
||||
onlyoffice-bin
|
||||
obs-studio
|
||||
pavucontrol
|
||||
pcmanfm
|
||||
pinentry
|
||||
rbw
|
||||
rofi-rbw
|
||||
# unstable.rustdesk
|
||||
unstable.rustdesk-flutter
|
||||
rustdesk-flutter
|
||||
slurp
|
||||
sway
|
||||
swaybg
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
};
|
||||
vscode-insiders = (unstable.vscode.override { isInsiders = true; }).overrideAttrs (oldAttrs: rec {
|
||||
src = (builtins.fetchTarball {
|
||||
url = "https://update.code.visualstudio.com/1.98.0-insider/linux-x64/insider";
|
||||
url = "https://update.code.visualstudio.com/1.98.2-insider/linux-x64/insider";
|
||||
sha256 = "sha256-tV0VxDLJJPD4jfNEgVh3wMXg899VJxCS5a3putdetkA=";
|
||||
});
|
||||
version = "1.98.0";
|
||||
|
||||
Reference in New Issue
Block a user