Refactor.

This commit is contained in:
2025-10-20 22:27:58 +01:00
parent fe51f1ac5b
commit 99db96e449
14 changed files with 268 additions and 30 deletions

View File

@@ -0,0 +1,26 @@
{ 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
];
};
}