Add nuxt config

Signed-off-by: Noah Knegt <git@noahknegt.com>
This commit is contained in:
2025-07-03 22:13:47 +02:00
parent c1f616112b
commit 2613918639
2 changed files with 8 additions and 0 deletions

View File

@@ -3,6 +3,7 @@
{
imports = [
./clang.nix
./nuxt.nix
./rust.nix
];
}

View File

@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
home.file.".nuxtrc".text = ''
telemetry.enabled=false
'';
}