Files
nixos/hosts/nb/modules/development/default.nix

59 lines
955 B
Nix

{ 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
./coding.nix
# ./android.nix
./nvim/default.nix
./mcp-chromium.nix
];
environment.systemPackages = with pkgs; [
bento
ddev
docker-compose
drone-cli
gcc
git
git-filter-repo
glib
gnumake
air
go
jq
mkcert
nssTools
mqttui
nix-prefetch-git
nodejs_22
php
rbw
sops
unzip
uv
vim
wget
wireguard-tools
wkhtmltopdf
wol
];
virtualisation.docker.enable = true;
virtualisation.libvirtd = {
enable = true;
# Socket activation - only start when needed to save battery
onBoot = "ignore";
onShutdown = "shutdown";
# qemu.swtpm.enable = true; # enable if you need TPM emulation, etc.
};
}