phone: Don't customize hyprland at the configuration level

This was causing other options to not be applied correctly.
This commit is contained in:
Donovan Glover 2024-06-20 10:45:47 -04:00
parent b918c56ccc
commit 30198aa23d
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -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};