remove mise in favor of specific versions from nixpkgs

This commit is contained in:
insects 2024-09-28 12:26:31 +02:00
parent 824a839485
commit 36e8027fdf
4 changed files with 4 additions and 14 deletions

View file

@ -4,7 +4,6 @@
./fish.nix # fish shell configuration ./fish.nix # fish shell configuration
./lazygit.nix # my preferred git porcellain ./lazygit.nix # my preferred git porcellain
./direnv.nix # smart cding ./direnv.nix # smart cding
./mise.nix # version management for tools
./helix.nix # helix configuration, my CLI editor ./helix.nix # helix configuration, my CLI editor
]; ];

View file

@ -1,12 +0,0 @@
{ pkgs, ... }: {
home.packages = with pkgs;
[
python3 # needed for installing node.js
];
programs.mise = {
enable = true;
enableFishIntegration = true;
globalConfig = { tools = { node = "lts"; }; };
};
}

View file

@ -1,5 +1,7 @@
{ pkgs, ... }: { { pkgs, ... }: {
imports = [ ./php.nix ./clojure.nix ]; imports = [ ./php.nix ./clojure.nix ./langs.nix ];
services.lorri.enable = true;
home.packages = with pkgs; [ home.packages = with pkgs; [
gcc gcc

View file

@ -0,0 +1 @@
{ pkgs, ... }: { home.packages = with pkgs; [ nodejs_22 ruby_3_3 ]; }