Files
nixos/hosts/nb/modules/development/default.nix
2025-10-08 21:48:34 +02:00

58 lines
974 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
mqttui
nix-prefetch-git
nodejs_22
rbw
sops
unzip
vim
wget
wireguard-tools
wkhtmltopdf
wol
];
virtualisation.docker.enable = true;
virtualisation.libvirtd = {
enable = true; # Turn on the libvirtd daemon
qemu = {
ovmf = {
enable = true; # Enable OVMF firmware support
};
# swtpm.enable = true; # enable if you need TPM emulation, etc.
};
};
}