Files
nix-config/systems/modules/devenv.nix
2026-05-31 20:51:24 +02:00

11 lines
161 B
Nix

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