27 lines
501 B
Nix
27 lines
501 B
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
# Workstation profile: Development workstation configuration
|
|
# Extends server-node with development tools and emulation
|
|
imports = [
|
|
./server-node.nix
|
|
./unattended-encryption.nix
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
wget
|
|
deploy-rs
|
|
docker
|
|
jq
|
|
];
|
|
|
|
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
|
|
|
# for vscode remote to work
|
|
programs.nix-ld = {
|
|
enable = true;
|
|
libraries = with pkgs; [
|
|
stdenv.cc.cc
|
|
];
|
|
};
|
|
}
|