Remove 'with' from most modules
This commit is contained in:
parent
40032f7fd9
commit
7459ae0e96
27 changed files with 222 additions and 230 deletions
|
|
@ -1,7 +1,9 @@
|
|||
{ pkgs, ... }:
|
||||
with pkgs.lib.nix-rice;
|
||||
let strPalette = palette.toRGBHex pkgs.rice.colorPalette;
|
||||
in {
|
||||
let
|
||||
inherit (pkgs.lib) nix-rice;
|
||||
strPalette = nix-rice.palette.toRGBHex pkgs.rice.colorPalette;
|
||||
in
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs) dunst;
|
||||
inherit (pkgs.rice.font.normal) package;
|
||||
|
|
@ -26,7 +28,7 @@ in {
|
|||
notification_limit = 10;
|
||||
offset = "7x28";
|
||||
separator_color = strPalette.normal.blue;
|
||||
transparency = 100 - float.round (pkgs.rice.opacity * 100);
|
||||
transparency = 100 - nix-rice.float.round (pkgs.rice.opacity * 100);
|
||||
width = "(0, 320)";
|
||||
};
|
||||
urgency_low = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue