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 #+begin_src nix
nixpkgs = { nixpkgs = {
hostPlatform = lib.mkDefault "x86_64-linux"; # hostPlatform = lib.mkDefault "x86_64-linux";
config = { config = {
allowUnfree = true; allowUnfree = true;
permittedInsecurePackages = [ permittedInsecurePackages = [
]; ];
}; };
# localSystem = { localSystem = {
# gcc.arch = cpuArchitecture; gcc.arch = cpuArchitecture;
# gcc.tune = cpuArchitecture; gcc.tune = cpuArchitecture;
# system = "x86_64-linux"; system = "x86_64-linux";
# }; };
}; };
#+end_src #+end_src
@ -524,7 +524,7 @@ of these, for now.
#+begin_src nix #+begin_src nix
celluloid # video player celluloid # video player
cozy # audiobooks player cozy # audiobooks player
komikku # manga & comic GUI downloader # komikku # manga & comic GUI downloader
gnome-podcasts # podcast player gnome-podcasts # podcast player
handbrake # video converter, may be unnecessary handbrake # video converter, may be unnecessary
curtail # image compressor curtail # image compressor
@ -637,6 +637,27 @@ cachix # why spend time compiling?
editorconfig # follow rules of contributin editorconfig # follow rules of contributin
black # Python code formatter black # Python code formatter
pylint # bug and style checker for python 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 { (buildPythonApplication rec {
pname = "download"; pname = "download";
version = "1.5"; version = "1.5";
@ -658,20 +679,6 @@ cachix # why spend time compiling?
propagatedBuildInputs = propagatedBuildInputs =
[ tqdm ]; [ 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 #+end_src
*** NODEJS PACKAGES *** NODEJS PACKAGES