1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 19:17:45 +00:00

Move copy and paste tools to Hyprland and fix variable assignment in Hyprland config

This commit is contained in:
RGBCube 2023-11-03 14:37:34 +03:00
parent 020bb58295
commit 7df26f30a2
No known key found for this signature in database
2 changed files with 14 additions and 11 deletions

View file

@ -1,8 +1,4 @@
{ lib, pkgs, systemPackages, homeConfiguration, homePackages, enabled, ... }: lib.recursiveUpdate3
(with pkgs; systemPackages [
xclip
])
{ lib, pkgs, homeConfiguration, homePackages, enabled, ... }: lib.recursiveUpdate
(homeConfiguration "nixos" {
programs.helix = enabled {

View file

@ -1,6 +1,6 @@
{ homeConfiguration, enabled, ... }:
{ lib, pkgs, homeConfiguration, homePackages, enabled, ... }: lib.recursiveUpdate
homeConfiguration "nixos" {
(homeConfiguration "nixos" {
wayland.windowManager.hyprland = enabled {
extraConfig = ''
monitor = , preferred, auto, 1
@ -61,13 +61,13 @@ homeConfiguration "nixos" {
bind = , Print, exec, grim -g "$(slurp)" - | wl-copy
bind = SHIFT, Print, exec, kazam
$active_color = 0xD79921
$inactive_color = 0x928374
general {
gaps_in = 5
gaps_out = 5
$active_color = 0xD79921
$inactive_color = 0x928374
col.active_border = $active_color
col.nogroup_border_active = $active_color
@ -113,5 +113,12 @@ homeConfiguration "nixos" {
}
'';
};
}
})
(with pkgs; homePackages [
grim
slurp
wl-copy
wl-paste
])