mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-25 20:50:44 -06:00
Compare commits
3 commits
91a720541f
...
506e9abcee
Author | SHA1 | Date | |
---|---|---|---|
506e9abcee | |||
cb6c14f81e | |||
1ca5f9688a |
3 changed files with 21 additions and 22 deletions
|
@ -30,7 +30,6 @@
|
||||||
# setLdLibraryPath = true;
|
# setLdLibraryPath = true;
|
||||||
# };
|
# };
|
||||||
|
|
||||||
|
|
||||||
# Load nvidia driver for Xorg and Wayland
|
# Load nvidia driver for Xorg and Wayland
|
||||||
services.xserver.videoDrivers = [ "nvidia" ];
|
services.xserver.videoDrivers = [ "nvidia" ];
|
||||||
|
|
||||||
|
|
|
@ -8,16 +8,13 @@
|
||||||
let
|
let
|
||||||
inherit (lib) mkIfIn;
|
inherit (lib) mkIfIn;
|
||||||
cfg = config.oizys.languages;
|
cfg = config.oizys.languages;
|
||||||
|
|
||||||
|
python = pkgs.python3.withPackages (ps: with ps; [ pip ]);
|
||||||
|
pixi = inputs.pixi.packages.${pkgs.system}.default;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = mkIfIn "python" cfg {
|
config = mkIfIn "python" cfg {
|
||||||
environment.systemPackages =
|
environment.systemPackages = [
|
||||||
let
|
|
||||||
python = pkgs.python3.withPackages (ps: with ps; [ pip ]);
|
|
||||||
pixi = inputs.pixi.packages.${pkgs.system}.default;
|
|
||||||
in
|
|
||||||
with pkgs;
|
|
||||||
[
|
|
||||||
# https://github.com/Mic92/nix-ld?tab=readme-ov-file#my-pythonnodejsrubyinterpreter-libraries-do-not-find-the-libraries-configured-by-nix-ld
|
# https://github.com/Mic92/nix-ld?tab=readme-ov-file#my-pythonnodejsrubyinterpreter-libraries-do-not-find-the-libraries-configured-by-nix-ld
|
||||||
(pkgs.writeShellScriptBin "python" ''
|
(pkgs.writeShellScriptBin "python" ''
|
||||||
export LD_LIBRARY_PATH=$NIX_LD_LIBRARY_PATH
|
export LD_LIBRARY_PATH=$NIX_LD_LIBRARY_PATH
|
||||||
|
@ -29,9 +26,8 @@ in
|
||||||
exec ${python}/bin/python "$@"
|
exec ${python}/bin/python "$@"
|
||||||
'')
|
'')
|
||||||
|
|
||||||
(python3.withPackages (ps: with ps; [ pip ]))
|
|
||||||
micromamba
|
|
||||||
pixi
|
pixi
|
||||||
|
pkgs.micromamba
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -242,7 +242,7 @@ func Dry(verbose bool, minimal bool, rest ...string) {
|
||||||
log.Info("no packages in minimal set to build")
|
log.Info("no packages in minimal set to build")
|
||||||
os.Exit(0)
|
os.Exit(0)
|
||||||
}
|
}
|
||||||
cmd.Args = append(cmd.Args, drvs...)
|
cmd.Args = append(cmd.Args, append(drvs, "--no-link")...)
|
||||||
spinnerMsg = "evaluting for minimal build needs"
|
spinnerMsg = "evaluting for minimal build needs"
|
||||||
} else {
|
} else {
|
||||||
log.Debug("evalutating full nixosConfiguration")
|
log.Debug("evalutating full nixosConfiguration")
|
||||||
|
@ -318,6 +318,10 @@ var ignoredMap = stringSliceToMap(
|
||||||
"nixos-rebuild",
|
"nixos-rebuild",
|
||||||
"nixos-help",
|
"nixos-help",
|
||||||
"nixos-generate-config",
|
"nixos-generate-config",
|
||||||
|
"nixos-enter",
|
||||||
|
"nixos-container",
|
||||||
|
"nixos-build-vms",
|
||||||
|
"ld-library-path",
|
||||||
|
|
||||||
"nixos-wsl-version",
|
"nixos-wsl-version",
|
||||||
"nixos-wsl-welcome-message",
|
"nixos-wsl-welcome-message",
|
||||||
|
|
Loading…
Reference in a new issue