Dotnet 6.0 support and veracrypt

This commit is contained in:
Curt Spark 2024-03-24 13:12:54 +00:00
parent 73dd8429c6
commit 76fbc14e11
2 changed files with 14 additions and 0 deletions

View File

@ -72,6 +72,7 @@ in
kdenlive
vlc
unityhub
veracrypt
mpdcron
@ -213,8 +214,17 @@ in
#
# /etc/profiles/per-user/cspark/etc/profile.d/hm-session-vars.sh
#
# Add custom directories to $PATH
home.sessionPath = [
"$HOME/.dotnet/tools"
];
home.sessionVariables = {
EDITOR = "emacs -nw";
# Dotnet path not found fix
DOTNET_ROOT = "${pkgs.dotnet-sdk}";
};
programs.bash = {

View File

@ -13,6 +13,7 @@
environment.systemPackages = with pkgs; [
inetutils
linuxPackages.usbip
dotnet-sdk
];
systemd.services.usbipd = {
description = "Custom service that runs usbipd";
@ -110,6 +111,9 @@
# Dotnet libicu not found fix
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT = "1";
# Dotnet path not found fix
DOTNET_ROOT = "${pkgs.dotnet-sdk}";
};
# NixOS Dynamic Libraries Fix