mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2025-05-28 01:54:17 +02:00
several tweaks
This commit is contained in:
parent
e7d1eb56b5
commit
dfaaca9026
5 changed files with 33 additions and 24 deletions
home-manager/programs
|
@ -8,7 +8,7 @@
|
|||
decorations = "full";
|
||||
dynamic_title = true;
|
||||
};
|
||||
window.opacity = 1;
|
||||
window.opacity = 0.9;
|
||||
font = {
|
||||
normal = {
|
||||
family = "JetbrainsMono NFM";
|
||||
|
@ -18,7 +18,7 @@
|
|||
family = "JetbrainsMono NFM";
|
||||
style = "Bold";
|
||||
};
|
||||
size = 14;
|
||||
size = 12;
|
||||
};
|
||||
cursor.style.shape = "Beam";
|
||||
colors = {
|
||||
|
|
|
@ -19,12 +19,9 @@ let
|
|||
"bmnlcjabgnpnenekpadlanbbkooimhnj" # Honey
|
||||
"kbfnbcaeplbcioakkpcpgfkobkghlhen" # Grammarly
|
||||
];
|
||||
in
|
||||
{
|
||||
programs.vivaldi = {
|
||||
enable = if config.machine.isGraphical then true else false;
|
||||
dictionaries = with pkgs.hunspellDictsChromium; [ en_US de_DE ];
|
||||
commandLineArgs = [
|
||||
isEnabled = if config.machine.isGraphical then true else false;
|
||||
dictionaries = with pkgs.hunspellDictsChromium; [ en_US de_DE ];
|
||||
commandLineArgs = [
|
||||
"--ignore-gpu-blocklist"
|
||||
"--enable-gpu-rasterization"
|
||||
"--enable-zero-copy"
|
||||
|
@ -33,11 +30,22 @@ in
|
|||
"--use-vulkan"
|
||||
"--ozone-platform-hint=auto"
|
||||
"--enable-hardware-overlays"
|
||||
];
|
||||
extensions = map
|
||||
(eid: {
|
||||
id = eid;
|
||||
})
|
||||
chromium_extension;
|
||||
];
|
||||
extensions = map
|
||||
(eid: {
|
||||
id = eid;
|
||||
})
|
||||
chromium_extension;
|
||||
in
|
||||
{
|
||||
programs.vivaldi = {
|
||||
enable = isEnabled;
|
||||
dictionaries = dictionaries;
|
||||
commandLineArgs = commandLineArgs;
|
||||
extensions = extensions;
|
||||
};
|
||||
programs.google-chrome = {
|
||||
enable = isEnabled;
|
||||
commandLineArgs = commandLineArgs;
|
||||
};
|
||||
}
|
||||
|
|
5
home-manager/programs/hstr.nix
Normal file
5
home-manager/programs/hstr.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
programs.hstr = { enable = true; };
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue