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

View File

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