From e3a19e744624789eaf129a99c50c5da56e3eabea Mon Sep 17 00:00:00 2001 From: RealStickman Date: Mon, 1 May 2023 13:23:52 +0200 Subject: [PATCH] reformat variable definitions --- home-manager/hyprland.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/home-manager/hyprland.nix b/home-manager/hyprland.nix index cb8f3be..4fd65a0 100644 --- a/home-manager/hyprland.nix +++ b/home-manager/hyprland.nix @@ -1,10 +1,13 @@ -{pkgs, ...}: let +{pkgs, ...}: + +let flake-compat = builtins.fetchTarball "https://github.com/edolstra/flake-compat/archive/master.tar.gz"; hyprland = (import flake-compat { src = builtins.fetchTarball "https://github.com/hyprwm/Hyprland/archive/master.tar.gz"; }).defaultNix; -in { +in +{ imports = [ hyprland.homeManagerModules.default ];