enabled external binary execution for VSCode

also fixed hostname issue
This commit is contained in:
Chris Toph 2024-09-25 14:26:10 -04:00
parent aea79d72e1
commit d7b15ce44d

View file

@ -1,10 +1,7 @@
{ modulesPath, config, pkgs, ... }:
let
admin = "toph";
password = "[REDACTED]";
timeZone = "America/New_York";
defaultLocale = "en_US.UTF-8";
hostname = "nix";
in {
@ -53,4 +50,10 @@ in {
wget
x2goserver
];
## VS CODE ##
programs.nix-ld = {
enable = true;
package = pkgs.nix-ld-rs;
};
}