diff --git a/devshells/haskell.nix b/devshells/haskell.nix index b347ecc..cf66127 100644 --- a/devshells/haskell.nix +++ b/devshells/haskell.nix @@ -5,7 +5,7 @@ pkgs.mkShell { ghc hpack stack - fourmolu # Formatter + haskellPackages.fourmolu # Formatter cabal-install haskell-language-server haskellPackages.implicit-hie # Automatically generate hie.yaml! diff --git a/home/features/desktop/firefox/default.nix b/home/features/desktop/firefox/default.nix index 09f4419..cba446a 100644 --- a/home/features/desktop/firefox/default.nix +++ b/home/features/desktop/firefox/default.nix @@ -140,6 +140,12 @@ in aliases = [ "@yt" "@youtube" ]; }; + "Arcaea wiki" = mkBasicSearchEngine { + url = "https://arcaea.fandom.com/wiki/Special:Search?scope=internal&navigationSearch=true"; + param = "query"; + aliases = [ "@ae" "@arcaea" ]; + }; + "Noita wiki" = mkBasicSearchEngine { url = "https://noita.wiki.gg/index.php"; param = "search"; diff --git a/home/features/neovim/default.nix b/home/features/neovim/default.nix index d223943..36eed1b 100644 --- a/home/features/neovim/default.nix +++ b/home/features/neovim/default.nix @@ -49,7 +49,7 @@ let libstdcxx5 # Required by treesitter aparently # python310Packages.jupytext # Convert between jupyter notebooks and python files # graphviz # For rust crate graph - haskellPackages.hoogle # For haskell search + # haskellPackages.hoogle # For haskell search # Preview # zathura # Pdf reader diff --git a/hosts/nixos/common/global/nix.nix b/hosts/nixos/common/global/nix.nix index a4098d6..48fa7cb 100644 --- a/hosts/nixos/common/global/nix.nix +++ b/hosts/nixos/common/global/nix.nix @@ -9,14 +9,14 @@ dates = "weekly"; }; - # Protect nix shell from garbage collection - extraOptions = '' - keep-outputs = true - keep-derivations = true - ''; + # ~~Protect nix shell from garbage collection~~ + # This was taking too much storage + # extraOptions = '' + # keep-outputs = true + # keep-derivations = true + # ''; - # TODO: look into what this does, - # and why it was here in my old config + # https://nixos.wiki/wiki/Storage_optimization optimise.automatic = true; # This will add each flake input as a registry @@ -33,8 +33,8 @@ "nix-command" "flakes" "repl-flake" - "auto-allocate-uids" - # "configurable-impure-env" + "auto-allocate-uids" + # "configurable-impure-env" ]; # Disable warning when rebuilding before commiting