From 30198aa23d9e486551f20499a0e1a106689f66cb Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Thu, 20 Jun 2024 10:45:47 -0400 Subject: [PATCH] phone: Don't customize hyprland at the configuration level This was causing other options to not be applied correctly. --- phone/configuration.nix | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/phone/configuration.nix b/phone/configuration.nix index a1c09219..6eeb4963 100644 --- a/phone/configuration.nix +++ b/phone/configuration.nix @@ -1,7 +1,6 @@ -{ nix-config, pkgs, lib, ... }: +{ nix-config, pkgs, ... }: let - inherit (lib) singleton mkForce; inherit (builtins) attrValues; in { @@ -11,18 +10,7 @@ in nixpkgs.overlays = attrValues nix-config.overlays; - home-manager.sharedModules = attrValues nix-config.homeManagerModules ++ singleton { - services.hypridle.enable = mkForce false; - - wayland.windowManager.hyprland.settings = mkForce { - decoration = { - drop_shadow = false; - blur.enabled = false; - }; - - animations.enabled = false; - }; - }; + home-manager.sharedModules = attrValues nix-config.homeManagerModules; environment.systemPackages = attrValues nix-config.packages.${pkgs.system};