mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-25 07:08:38 +01:00
phone: Don't customize hyprland at the configuration level
This was causing other options to not be applied correctly.
This commit is contained in:
parent
b918c56ccc
commit
30198aa23d
@ -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};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user