From 3ae903200fa5943597ba2f44e28621fd26441820 Mon Sep 17 00:00:00 2001 From: thiloho <123883702+thiloho@users.noreply.github.com> Date: Sun, 1 Oct 2023 22:59:28 +0200 Subject: [PATCH] Add blender package --- nixos-configurations/pc/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/nixos-configurations/pc/default.nix b/nixos-configurations/pc/default.nix index 15ec01c..5cbe4ec 100644 --- a/nixos-configurations/pc/default.nix +++ b/nixos-configurations/pc/default.nix @@ -23,7 +23,12 @@ home-manager.users.thiloho = { pkgs, lib, ... }: { programs.git.signing.key = "5ECD00BDC15A987E"; - home.stateVersion = "23.05"; + home = { + packages = with pkgs; [ + blender + ]; + stateVersion = "23.05"; + }; }; system.stateVersion = "23.05"; }