merging some changes

This commit is contained in:
Glen Goodwin 2023-09-14 23:00:03 -04:00
parent 3e16e02840
commit a0ca5540e7
14 changed files with 359 additions and 27 deletions

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, system, hyprland, ... }:
{ config, lib, pkgs, system, inputs, ... }:
let
exec = "exec Hyprland";
in
@ -48,7 +48,7 @@ in
programs = {
hyprland = {
enable = true;
package = hyprland.packages.${pkgs.system}.hyprland;
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
};
};

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, config, ... }:
let
hyprlandConf = ''
@ -16,7 +16,7 @@ let
border_size=3
gaps_in=5
gaps_out=7
col.active_border=rgba(33ccffee) rgba(00ff99ee) 45deg
col.active_border=rgba(${config.colorScheme.colors.base05}ee) rgba(${config.colorScheme.colors.base08}ee) 45deg
col.inactive_border=0x66333333
layout=dwindle
}