From b71bfedd88912f8d7a58f5851af4c9d44add69f4 Mon Sep 17 00:00:00 2001 From: minco Date: Thu, 17 Jul 2025 19:46:06 +0900 Subject: [PATCH] fix: hyprland basic --- configuration.nix | 1 + programs/hyprland.nix | 1 + 2 files changed, 2 insertions(+) create mode 100644 programs/hyprland.nix diff --git a/configuration.nix b/configuration.nix index ab88801..90a2ff3 100644 --- a/configuration.nix +++ b/configuration.nix @@ -9,6 +9,7 @@ ./services/virtual.nix ./services/x.nix ./services/sound.nix + ./programs/hyprland.nix ]; nixpkgs.config.allowUnfree = true; diff --git a/programs/hyprland.nix b/programs/hyprland.nix new file mode 100644 index 0000000..12e39aa --- /dev/null +++ b/programs/hyprland.nix @@ -0,0 +1 @@ +{ inputs, pkgs, ... }: { programs.hyprland = { enable = true; }; }