From feeabac5da5425ffa8809187ed4698eddc8e8110 Mon Sep 17 00:00:00 2001 From: Natalie Marks Date: Sat, 27 Jan 2024 22:26:23 -0800 Subject: [PATCH] updated home-manager config --- home.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/home.nix b/home.nix index ba84be6..2c35f8c 100644 --- a/home.nix +++ b/home.nix @@ -1,8 +1,18 @@ { + inputs, config, pkgs, ... }: { + wayland.windowManager.hyprland = { + enable = true; + # ... + plugins = [ + inputs.hyprland-plugins.packages.${pkgs.system}.hyprbars + # ... + ]; + }; + # Home Manager needs a bit of information about you and the paths it should # manage. home.username = "nmarks";