compiled for my CPU

This commit is contained in:
Danilo Reyes 2023-12-01 15:37:56 -06:00
parent b461fafa99
commit 14a8ab53cf

View File

@ -329,17 +329,17 @@ architecture and other build flags.
#+begin_src nix
nixpkgs = {
hostPlatform = lib.mkDefault "x86_64-linux";
# hostPlatform = lib.mkDefault "x86_64-linux";
config = {
allowUnfree = true;
permittedInsecurePackages = [
];
};
# localSystem = {
# gcc.arch = cpuArchitecture;
# gcc.tune = cpuArchitecture;
# system = "x86_64-linux";
# };
localSystem = {
gcc.arch = cpuArchitecture;
gcc.tune = cpuArchitecture;
system = "x86_64-linux";
};
};
#+end_src
@ -524,7 +524,7 @@ of these, for now.
#+begin_src nix
celluloid # video player
cozy # audiobooks player
komikku # manga & comic GUI downloader
# komikku # manga & comic GUI downloader
gnome-podcasts # podcast player
handbrake # video converter, may be unnecessary
curtail # image compressor
@ -637,6 +637,27 @@ cachix # why spend time compiling?
editorconfig # follow rules of contributin
black # Python code formatter
pylint # bug and style checker for python
]))
# C# & Rust
# omnisharp-roslyn # c# linter and code formatter
# HASKELL
ghc # compiler
cabal-install # haskell app manager
stack # haskell took stack
# unstable.haskellPackages.ghcup
# JS
nodejs # not as bad as I thought
# jq # linting
#+end_src
** CUSTOM PYTHON SCRIPTS
Libraries & apps not found on the nix-store and scripts made by me.
#+begin_src nix
]) ++ (with pkgs.python3Packages; [
(buildPythonApplication rec {
pname = "download";
version = "1.5";
@ -658,20 +679,6 @@ cachix # why spend time compiling?
propagatedBuildInputs =
[ tqdm ];
})
]))
# C# & Rust
# omnisharp-roslyn # c# linter and code formatter
# HASKELL
ghc # compiler
cabal-install # haskell app manager
stack # haskell took stack
# unstable.haskellPackages.ghcup
# JS
nodejs # not as bad as I thought
# jq # linting
#+end_src
*** NODEJS PACKAGES