From 14a8ab53cf9148e6cc223fb1d8abbc6b318169bf Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Fri, 1 Dec 2023 15:37:56 -0600 Subject: [PATCH] compiled for my CPU --- workstation/configuration.org | 49 ++++++++++++++++++++--------------- 1 file changed, 28 insertions(+), 21 deletions(-) diff --git a/workstation/configuration.org b/workstation/configuration.org index cb58b3e..e74623e 100644 --- a/workstation/configuration.org +++ b/workstation/configuration.org @@ -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