mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
formatting
This commit is contained in:
parent
fa0c1cb877
commit
0afac5eed1
4 changed files with 24 additions and 21 deletions
|
@ -187,11 +187,11 @@
|
|||
"locked": {
|
||||
"lastModified": 1,
|
||||
"narHash": "sha256-f1iK37gKrRA5Ampke23EzstEFHuKAwEdQnFi2kp4Gi4=",
|
||||
"path": "/nix/store/zawcw9ffqblsfj2943zlkhdiilg9k2vg-source/inputs",
|
||||
"path": "/nix/store/6mqi9hqplan2ylc4ajk4w4jfjnqasb2b-source/inputs",
|
||||
"type": "path"
|
||||
},
|
||||
"original": {
|
||||
"path": "/nix/store/zawcw9ffqblsfj2943zlkhdiilg9k2vg-source/inputs",
|
||||
"path": "/nix/store/6mqi9hqplan2ylc4ajk4w4jfjnqasb2b-source/inputs",
|
||||
"type": "path"
|
||||
}
|
||||
},
|
||||
|
|
|
@ -17,7 +17,10 @@
|
|||
# };
|
||||
#
|
||||
outputs = {inputs, ...}: let
|
||||
lib = import ./lib {nixpkgs = inputs.inputs.nixpkgs; inputs = inputs;};
|
||||
lib = import ./lib {
|
||||
nixpkgs = inputs.inputs.nixpkgs;
|
||||
inputs = inputs;
|
||||
};
|
||||
inherit (lib) findModules buildHosts buildOizys;
|
||||
in {
|
||||
nixosModules = findModules ./modules;
|
||||
|
|
|
@ -29,9 +29,9 @@
|
|||
];
|
||||
|
||||
services.getty.greetingLine = mkRune {
|
||||
rune = "othalan";
|
||||
runeKind = "ascii";
|
||||
};
|
||||
rune = "othalan";
|
||||
runeKind = "ascii";
|
||||
};
|
||||
# + inputs.self.nixosModules.runes.othalan.ascii;
|
||||
|
||||
# catppuccin/tty move to "module"
|
||||
|
|
|
@ -9,23 +9,23 @@
|
|||
in {
|
||||
options.languages.python = mkEnableOption "python";
|
||||
config = mkIf cfg.python {
|
||||
environment.systemPackages =
|
||||
let python = pkgs.python3.withPackages(ps: with ps; [pip]);
|
||||
environment.systemPackages = let
|
||||
python = pkgs.python3.withPackages (ps: with ps; [pip]);
|
||||
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
|
||||
(pkgs.writeShellScriptBin "python" ''
|
||||
export LD_LIBRARY_PATH=$NIX_LD_LIBRARY_PATH
|
||||
exec ${python}/bin/python "$@"
|
||||
'')
|
||||
with pkgs; [
|
||||
# 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" ''
|
||||
export LD_LIBRARY_PATH=$NIX_LD_LIBRARY_PATH
|
||||
exec ${python}/bin/python "$@"
|
||||
'')
|
||||
|
||||
(pkgs.writeShellScriptBin "python3" ''
|
||||
export LD_LIBRARY_PATH=$NIX_LD_LIBRARY_PATH
|
||||
exec ${python}/bin/python "$@"
|
||||
'')
|
||||
(pkgs.writeShellScriptBin "python3" ''
|
||||
export LD_LIBRARY_PATH=$NIX_LD_LIBRARY_PATH
|
||||
exec ${python}/bin/python "$@"
|
||||
'')
|
||||
|
||||
# (python3.withPackages (ps: with ps; [pip]))
|
||||
micromamba
|
||||
];
|
||||
# (python3.withPackages (ps: with ps; [pip]))
|
||||
micromamba
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue