We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc15811 commit 8107e59Copy full SHA for 8107e59
nix/modules/containers.nix
@@ -79,7 +79,8 @@
79
extraPkgs = containerSysPackages ++ extraPkgs ++ [ pythonPackageEnv ];
80
extraContents = [
81
inputs'.nixpod.legacyPackages.homeConfigurations.${containerUsername}.activationPackage
82
- ] ++ extraContents;
+ ]
83
+ ++ extraContents;
84
85
extraFakeRootCommands = ''
86
chown -R ${containerUsername}:wheel /nix
@@ -108,11 +109,13 @@
108
109
"NVIDIA_DRIVER_CAPABILITIES='compute,utility'"
110
"NVIDIA_VISIBLE_DEVICES=all"
111
"QUARTO_PYTHON=${pythonPackageEnv}/bin/python"
- ] ++ extraEnv;
112
113
+ ++ extraEnv;
114
115
extraConfig = {
116
ExposedPorts."8888/tcp" = { };
- } // extraConfig;
117
+ }
118
+ // extraConfig;
119
};
120
121
gitHubOrg = "sciexp";
0 commit comments