From 70a077f1ce3f9ca3d377e687db722ab8ddc41f92 Mon Sep 17 00:00:00 2001 From: zer0day Date: Thu, 6 Feb 2025 16:40:07 +0100 Subject: [PATCH] added basic hyprland system flake --- system/hyprland.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 system/hyprland.nix diff --git a/system/hyprland.nix b/system/hyprland.nix new file mode 100644 index 0000000..aeb4afa --- /dev/null +++ b/system/hyprland.nix @@ -0,0 +1,15 @@ +{ pkgs, ... }: + +{ + imports = [ ]; + + programs.hyprland = { + enable = true; + }; + + environment.systemPackages = with pkgs; [ + kitty + ]; + + environment.sessionVariables.NIXOS_OZONE_WL = "1"; +} \ No newline at end of file