From 56eed9210cce302c6dbba7d9c09a0bf468d1e4b7 Mon Sep 17 00:00:00 2001 From: fmarkwitz Date: Thu, 6 Jul 2023 16:04:36 +0200 Subject: [PATCH] Added Packages to Hyprland config --- machines/configuration.nix | 1 + modules/environments/hyprland/default.nix | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/machines/configuration.nix b/machines/configuration.nix index a28904c..0f7f62f 100644 --- a/machines/configuration.nix +++ b/machines/configuration.nix @@ -33,6 +33,7 @@ let ]; documentation.info.enable = false; }) + hyprland.nixosModules.default ]; } ../modules diff --git a/modules/environments/hyprland/default.nix b/modules/environments/hyprland/default.nix index cf3262f..ca46a76 100644 --- a/modules/environments/hyprland/default.nix +++ b/modules/environments/hyprland/default.nix @@ -11,8 +11,12 @@ let config = lib.mkIf cfg.enable { programs.hyprland.enable = true; + users.users.finn.packages = with pkgs; [ + wofi + mako + ]; - }; + }; } \ No newline at end of file