1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Don't use an overlay for Hyprland as it messes it up & use wl-clipboard

This commit is contained in:
RGBCube 2023-11-04 12:58:30 +03:00
parent 6c3e9b7855
commit e6e66b27cc
No known key found for this signature in database
2 changed files with 7 additions and 6 deletions

View file

@ -62,10 +62,11 @@
overlays = [ overlays = [
fenix.overlays.default fenix.overlays.default
hyprland.overlays.default
]; ];
}; };
hyprland = hyprland.packages.${hostPlatform}.hyprland;
# SYSTEM # SYSTEM
systemConfiguration = attributes: attributes; systemConfiguration = attributes: attributes;

View file

@ -1,7 +1,9 @@
{ lib, pkgs, homeConfiguration, homePackages, enabled, ... }: lib.recursiveUpdate { lib, pkgs, hyprland, homeConfiguration, homePackages, enabled, ... }: lib.recursiveUpdate
(homeConfiguration "nixos" { (homeConfiguration "nixos" {
wayland.windowManager.hyprland = enabled { wayland.windowManager.hyprland = enabled {
package = hyprland;
extraConfig = '' extraConfig = ''
monitor = , preferred, auto, 1 monitor = , preferred, auto, 1
@ -115,10 +117,8 @@
}; };
}) })
(with pkgs; homePackages [ (with pkgs; homePackages "nixos" [
grim grim
slurp slurp
wl-clipboard
wl-copy
wl-paste
]) ])