From 89b76cb924951f00a0af7b78bd14e778298e7063 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Wed, 23 Oct 2024 09:45:49 -0400 Subject: [PATCH] fmt --- modules/nixos/linux/gui/hyprland.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/nixos/linux/gui/hyprland.nix b/modules/nixos/linux/gui/hyprland.nix index bb18aa2..ff93461 100644 --- a/modules/nixos/linux/gui/hyprland.nix +++ b/modules/nixos/linux/gui/hyprland.nix @@ -1,8 +1,8 @@ -{ flake, pkgs, ...}: +{ flake, pkgs, ... }: let -inherit (flake) inputs; -in + inherit (flake) inputs; +in { programs.hyprland = { enable = true; @@ -12,6 +12,6 @@ in portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland; }; environment.systemPackages = [ - pkgs.kitty + pkgs.kitty ]; }