From 7103d8a8d09475706319fcfb462f727b3879c41d Mon Sep 17 00:00:00 2001 From: Thomas Boerger Date: Sat, 31 Aug 2024 22:19:10 +0200 Subject: [PATCH] fix: use home packages instead of environment systemPackages --- profiles/shared/modules/dock.nix | 4 ++-- profiles/shared/modules/finder.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/profiles/shared/modules/dock.nix b/profiles/shared/modules/dock.nix index 8819b09..ad749ad 100644 --- a/profiles/shared/modules/dock.nix +++ b/profiles/shared/modules/dock.nix @@ -75,8 +75,8 @@ in cfg.entries; in { - environment = { - systemPackages = with pkgs; [ + home = { + packages = with pkgs; [ dockutil ]; }; diff --git a/profiles/shared/modules/finder.nix b/profiles/shared/modules/finder.nix index ec2b09f..731411a 100644 --- a/profiles/shared/modules/finder.nix +++ b/profiles/shared/modules/finder.nix @@ -54,8 +54,8 @@ in cfg.entries; in { - environment = { - systemPackages = with pkgs; [ + home = { + packages = with pkgs; [ mysides ]; };