try out the overlay

This commit is contained in:
Daylin Morgan 2024-02-02 16:38:56 -06:00
parent 095c4c94be
commit cc74ff1bf3
Signed by: daylin
GPG key ID: C1E52E7DD81DF79F

View file

@ -10,7 +10,7 @@
in { in {
config = mkIf cfg.enable { config = mkIf cfg.enable {
security.pam.services.swaylock = {}; security.pam.services.swaylock = {};
programs.hyprland.package = inputs.hyprland.packages.${pkgs.system}.default; # programs.hyprland.package = inputs.hyprland.packages.${pkgs.system}.default;
# Optional, hint electron apps to use wayland: # Optional, hint electron apps to use wayland:
environment.sessionVariables.NIXOS_OZONE_WL = "1"; environment.sessionVariables.NIXOS_OZONE_WL = "1";
@ -36,6 +36,9 @@ in {
catppuccin-cursors.mochaDark catppuccin-cursors.mochaDark
pavucontrol pavucontrol
]; ];
nixpkgs.overlays = [inputs.nixpkgs-wayland.overlay]; nixpkgs.overlays = [
inputs.nixpkgs-wayland.overlay
inputs.hyprland.overlays.default
];
}; };
} }