Files
nix-config/systems/modules/devenv.nix
2026-06-16 18:13:56 +02:00

13 lines
169 B
Nix

{ config, pkgsUnstable, ... }:
{
environment.systemPackages = with pkgsUnstable; [
devenv
];
nix.settings.trusted-users = [
"root"
"avravels"
];
}