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'.