diff --git a/configuration.nix b/configuration.nix index b061b1d..ddebb4b 100755 --- a/configuration.nix +++ b/configuration.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, user, host, allowed, secrets, rice, nvidia, ... }: +{ config, lib, pkgs, pkgs-unstable, user, host, allowed, secrets, rice, nvidia, ... }: let in { @@ -84,10 +84,12 @@ in noto-fonts noto-fonts-cjk noto-fonts-emoji - ] ++ [ - rice.font.base.package - rice.font.code.package - ]; + ] ++ (with rice.font; [ + base.package + code.package + ]) ++ (with pkgs-unstable; [ + newcomputermodern + ]); programs.gnupg.agent = { enable = true; diff --git a/flake.nix b/flake.nix index 11d374f..4528ba5 100755 --- a/flake.nix +++ b/flake.nix @@ -83,7 +83,7 @@ rice = rec { lib = import ./nxlib/ricelib.nix { lib = nixpkgs.lib; }; - transparency = 0.9; + transparency = 0.8; rounding = 10; gap-size = 10; border-width = 3; @@ -105,7 +105,7 @@ xcolor = with ccolor; { background = black.dark; foreground = white.base; - border = red.base; + border = green.base; border2 = blue.base; accent = magenta.base; tertiary = blue.base; diff --git a/home-modules/hyprland.nix b/home-modules/hyprland.nix index 59293fe..95997d7 100755 --- a/home-modules/hyprland.nix +++ b/home-modules/hyprland.nix @@ -1,6 +1,6 @@ { pkgs, pkgs-unstable, inputs, host, user, nvidia, rice, lib, ... }: let - animation-speed = "2"; + animation-speed = "5"; transparency = builtins.toString rice.transparency; monitors = { xps = { @@ -154,7 +154,7 @@ lib.mkIf (user != "tv") gaps_in = builtins.div rice.gap-size 2; gaps_out = rice.gap-size; border_size = rice.border-width; - "col.active_border" = "rgba(${rice.lib.nohash rice.color.red.base}ff) rgba(${rice.lib.nohash rice.color.blue.base}ff) 90deg"; + "col.active_border" = "rgba(${rice.lib.nohash rice.color.border}ff) rgba(${rice.lib.nohash rice.color.border2}ff) 90deg"; "col.inactive_border" = "rgba(${rice.lib.nohash rice.color.black.base}ff) rgba(${rice.lib.nohash rice.color.blue.base}ff) 90deg"; # cursor_inactive_timeout = 10;