From 320f179ec76f7f4906c723dedddcc1f3db4796aa Mon Sep 17 00:00:00 2001 From: Alexandre Date: Sun, 14 Dec 2025 00:25:00 +0100 Subject: [PATCH] Fixed missing packages due to Nix quirks, removed vcpkgs-tools as it was redudant --- hosts/common/home.nix | 1 - hosts/nixos/home.nix | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/hosts/common/home.nix b/hosts/common/home.nix index c5f69b1..a2101d4 100644 --- a/hosts/common/home.nix +++ b/hosts/common/home.nix @@ -47,7 +47,6 @@ clang-tools # The main compiler cmake vcpkg # The package manager - vcpkg-tool # Python python312 # The main interpreter diff --git a/hosts/nixos/home.nix b/hosts/nixos/home.nix index 2405bb2..2163a17 100644 --- a/hosts/nixos/home.nix +++ b/hosts/nixos/home.nix @@ -54,7 +54,7 @@ commonHome // { # The home.packages option allows you to install Nix packages into your # environment. - home.packages = with pkgs; [ + home.packages = commonHome.home.packages ++ ( with pkgs;[ # # Adds the 'hello' command to your environment. It prints a friendly # # "Hello, world!" when run. @@ -75,7 +75,7 @@ commonHome // { # (pkgs.writeShellScriptBin "my-hello" '' # echo "Hello, ${config.home.username}!" # '') - ]; + ]); # Home Manager is pretty good at managing dotfiles. The primary way to manage # plain files is through 'home.file'.