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