Fixed missing packages due to Nix quirks, removed vcpkgs-tools as it was redudant

This commit is contained in:
Alexandre 2025-12-14 00:25:00 +01:00
parent 2bd941b124
commit 320f179ec7
2 changed files with 2 additions and 3 deletions

View File

@ -47,7 +47,6 @@
clang-tools # The main compiler clang-tools # The main compiler
cmake cmake
vcpkg # The package manager vcpkg # The package manager
vcpkg-tool
# Python # Python
python312 # The main interpreter python312 # The main interpreter

View File

@ -54,7 +54,7 @@ commonHome // {
# The home.packages option allows you to install Nix packages into your # The home.packages option allows you to install Nix packages into your
# environment. # environment.
home.packages = with pkgs; [ home.packages = commonHome.home.packages ++ ( with pkgs;[
# # Adds the 'hello' command to your environment. It prints a friendly # # Adds the 'hello' command to your environment. It prints a friendly
# # "Hello, world!" when run. # # "Hello, world!" when run.
@ -75,7 +75,7 @@ commonHome // {
# (pkgs.writeShellScriptBin "my-hello" '' # (pkgs.writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!" # echo "Hello, ${config.home.username}!"
# '') # '')
]; ]);
# Home Manager is pretty good at managing dotfiles. The primary way to manage # Home Manager is pretty good at managing dotfiles. The primary way to manage
# plain files is through 'home.file'. # plain files is through 'home.file'.