Removed the pkgs. prefix, added with pkgs option in homeManager in NixOS

This commit is contained in:
Alexandre 2025-12-14 00:10:26 +01:00
parent 641df0caaa
commit 2bd941b124

View File

@ -54,17 +54,14 @@ 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 = [ 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.
pkgs.hello
pkgs.btop
pkgs.fastfetch
# Hyprland related (rice, etc...) # Hyprland related (rice, etc...)
pkgs.wofi wofi
pkgs.alacritty alacritty
pkgs.firefox firefox
# # It is sometimes useful to fine-tune packages, for example, by applying # # It is sometimes useful to fine-tune packages, for example, by applying
# # overrides. You can do that directly here, just don't forget the # # overrides. You can do that directly here, just don't forget the