Compare commits
4 Commits
148bd4c481
...
1790336aa5
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1790336aa5 | ||
|
|
06a630319d | ||
|
|
1814068cfe | ||
|
|
096f31d81a |
@@ -1,16 +1,15 @@
|
|||||||
{ pkgs, pkgs-unstable, ... }:
|
{ pkgs, pkgs-unstable, ... }:
|
||||||
{
|
{
|
||||||
# there also is a system module
|
# there also is a system module
|
||||||
home.packages = with pkgs; [
|
home.packages = (with pkgs; [
|
||||||
gnupg
|
gnupg
|
||||||
gpg-tui
|
gpg-tui
|
||||||
] ++ ( with pkgs-unstable; [
|
]) ++ ( with pkgs-unstable; [
|
||||||
pinentry-all
|
pinentry-all
|
||||||
]);
|
]);
|
||||||
|
|
||||||
# services.pcscd.enable = true;
|
# services.pcscd.enable = true;
|
||||||
services.gpg-agent =
|
services.gpg-agent = let
|
||||||
let
|
|
||||||
min2sec = min: (min * 60);
|
min2sec = min: (min * 60);
|
||||||
in {
|
in {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|||||||
@@ -270,7 +270,7 @@ lib.mkIf (user != "tv")
|
|||||||
"opacity ${transparency}, sent"
|
"opacity ${transparency}, sent"
|
||||||
"opacity ${transparency}, neovide"
|
"opacity ${transparency}, neovide"
|
||||||
"opacity ${transparency}, obsidian"
|
"opacity ${transparency}, obsidian"
|
||||||
"opacity ${transparency}, zathura"
|
# "opacity ${transparency}, zathura"
|
||||||
# "bordercolor rgba(${rice.lib.nohash rice.color.foreground}ff) rgba(${rice.lib.nohash rice.color.background}${rice.lib.float-to-drune rice.transparency}), Alacritty"
|
# "bordercolor rgba(${rice.lib.nohash rice.color.foreground}ff) rgba(${rice.lib.nohash rice.color.background}${rice.lib.float-to-drune rice.transparency}), Alacritty"
|
||||||
# "bordercolor rgba(${rice.lib.nohash rice.color.foreground}ff) rgba(${rice.lib.nohash rice.color.background}${rice.lib.float-to-drune rice.transparency}), Kitty"
|
# "bordercolor rgba(${rice.lib.nohash rice.color.foreground}ff) rgba(${rice.lib.nohash rice.color.background}${rice.lib.float-to-drune rice.transparency}), Kitty"
|
||||||
"opacity ${transparency}, discord"
|
"opacity ${transparency}, discord"
|
||||||
|
|||||||
@@ -7,10 +7,11 @@
|
|||||||
completion-fg = foreground;
|
completion-fg = foreground;
|
||||||
completion-highlight-bg = background;
|
completion-highlight-bg = background;
|
||||||
completion-highlight-fg = accent.base;
|
completion-highlight-fg = accent.base;
|
||||||
# default-bg = background;
|
default-bg = "rgba(${rice.lib.hex-to-rgb-comma-string background},${builtins.toString rice.transparency})";
|
||||||
# default-fg = foreground;
|
default-fg = foreground;
|
||||||
highlight-active-color = accent.base;
|
highlight-active-color = "rgba(${rice.lib.hex-to-rgb-comma-string accent.base},0.5)";
|
||||||
highlight-color = secondary.base;
|
highlight-color = "rgba(${rice.lib.hex-to-rgb-comma-string secondary.base},0.5)";
|
||||||
|
highlight-fg = "rgba(${rice.lib.hex-to-rgb-comma-string secondary.base},0.5)";
|
||||||
index-active-bg = background;
|
index-active-bg = background;
|
||||||
inputbar-bg = background;
|
inputbar-bg = background;
|
||||||
inputbar-fg = foreground;
|
inputbar-fg = foreground;
|
||||||
@@ -20,13 +21,16 @@
|
|||||||
notification-fg = foreground;
|
notification-fg = foreground;
|
||||||
notification-warning-bg = background;
|
notification-warning-bg = background;
|
||||||
notification-warning-fg = foreground;
|
notification-warning-fg = foreground;
|
||||||
recolor = false;
|
recolor = true;
|
||||||
recolor-darkcolor = foreground;
|
recolor-darkcolor = foreground;
|
||||||
recolor-keephue = true;
|
recolor-keephue = true;
|
||||||
recolor-lightcolor = background;
|
recolor-lightcolor = background;
|
||||||
selection-clipboard = "clipboard";
|
selection-clipboard = "clipboard";
|
||||||
statusbar-bg = background;
|
statusbar-bg = black.base;
|
||||||
statusbar-fg = foreground;
|
statusbar-fg = foreground;
|
||||||
|
|
||||||
|
n-completion-items = 9999999999999;
|
||||||
|
exec-command = "open";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
{ inputs, ... }:
|
{ inputs, ... }:
|
||||||
{
|
{
|
||||||
nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
|
nix.nixPath = [
|
||||||
|
"nixpkgs=${inputs.nixpkgs}"
|
||||||
|
"nixpkgs-unstable=${inputs.nixpkgs-unstable}"
|
||||||
|
"nixpkgs-latest=${inputs.nixpkgs-latest}"
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user