From e6551fcfa928b63683ae1475403f6a9eda80cc00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A7=84=EC=9A=B0=20=EC=A1=B0?= Date: Tue, 18 Nov 2025 10:25:54 +0000 Subject: [PATCH] Update 3 files - /flake.nix - /configuration.nix - /modules/hm/default.nix --- configuration.nix | 5 ----- flake.nix | 7 +++++++ modules/hm/default.nix | 10 +++++++++- 3 files changed, 16 insertions(+), 6 deletions(-) diff --git a/configuration.nix b/configuration.nix index bb54dc9..485866f 100644 --- a/configuration.nix +++ b/configuration.nix @@ -130,11 +130,6 @@ in QT_IM_MODULE = "kime"; XMODIFIERS = "@im=kime"; }; - - wayland.windowManager.hyprland.plugins = [ - pkgs.hyprlandPlugins.hyprexpo - pkgs.hyprlandPlugins.hyprscrolling - ]; # System Version - Don't change unless you know what you're doing (helps with system upgrades and compatibility) system.stateVersion = "25.05"; diff --git a/flake.nix b/flake.nix index 5a90147..3ec3713 100644 --- a/flake.nix +++ b/flake.nix @@ -17,6 +17,13 @@ # inputs.nixpkgs.follows = "nixpkgs"; }; + hyprland.url = "github:hyprwm/Hyprland"; + + hyprland-plugins = { + url = "github:hyprwm/hyprland-plugins"; + inputs.hyprland.follows = "hyprland"; + }; + # Hardware Configuration's, used in ./configuration.nix. Feel free to remove if unused nixos-hardware.url = "github:nixos/nixos-hardware/master"; }; diff --git a/modules/hm/default.nix b/modules/hm/default.nix index 4a762eb..8f14e31 100644 --- a/modules/hm/default.nix +++ b/modules/hm/default.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, ... }: +{ config, lib, pkgs, inputs, ... }: let idea20243 = pkgs.jetbrains.idea-ultimate.overrideAttrs (oldAttrs: { version = "2024.3.7"; @@ -20,6 +20,14 @@ in # pkgs.userPkgs.vscode - your personal nixpkgs version ]; + wayland.windowManager.hyprland = { + enable = true; + + plugins = [ + inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}. + ]; + }; + # hydenix home-manager options go here hydenix = {