Compare commits

...

3 Commits

Author SHA1 Message Date
0401a62c05 Add extra env vars
Signed-off-by: Noah Knegt <git@noahknegt.com>
2025-07-03 22:27:07 +02:00
2613918639 Add nuxt config
Signed-off-by: Noah Knegt <git@noahknegt.com>
2025-07-03 22:13:47 +02:00
c1f616112b Rename cargo to rust for all rust related config
Signed-off-by: Noah Knegt <git@noahknegt.com>
2025-07-03 22:10:47 +02:00
6 changed files with 12 additions and 2 deletions

View File

@@ -2,7 +2,8 @@
{
imports = [
./cargo.nix
./clang.nix
./nuxt.nix
./rust.nix
];
}

View File

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

View File

@@ -53,10 +53,12 @@
sessionPath = [
"$HOME/.cargo/bin"
"$HOME/.local/bin"
"$HOME/.local/share/pnpm"
];
sessionVariables = {
SSH_AUTH_SOCK = "/home/noahk/.bitwarden-ssh-agent.sock";
DRONE_SERVER = "https://drone.noahknegt.com";
};
packages = with pkgs; [

View File

@@ -11,6 +11,7 @@
extraOptions = [
"--group-directories-first"
"-h"
];
};
}

View File

@@ -11,7 +11,6 @@
append = true;
};
shellAliases = {
ls = "eza";
ll = "eza -lh";