Dotnet 6.0 support and veracrypt
This commit is contained in:
parent
73dd8429c6
commit
76fbc14e11
|
|
@ -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 = {
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue