ADD: various things ...
This commit is contained in:
parent
6cf61cb4f5
commit
fe5cd05d60
11 changed files with 166 additions and 53 deletions
|
|
@ -1,12 +1,23 @@
|
|||
_: {
|
||||
{pkgs, nur, ... }: {
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
languagePacks = ["fr"];
|
||||
profiles.default = {
|
||||
settings = {
|
||||
"intl.locale.requested" = "fr" ;
|
||||
"intl.accept_languages" = "fr, en-US, en";
|
||||
"privacy.trackingprotection.enabled" = true ;
|
||||
"privacy.resistFingerprinting" = true ;
|
||||
"network.cookie.cookieBehavior" = 1;
|
||||
};
|
||||
extensions.packages = with pkgs.nur.repos.rycee.firefox-addons; [
|
||||
i-dont-care-about-cookies
|
||||
privacy-badger
|
||||
proton-pass
|
||||
ublock-origin
|
||||
];
|
||||
};
|
||||
};
|
||||
programs.floorp = {
|
||||
enable = true;
|
||||
languagePacks = ["fr"];
|
||||
};
|
||||
}
|
||||
}
|
||||
# vim: set ts=2 sw=2 sts=2 et :
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
# hm/desktop/bspwm.nix
|
||||
{ pkgs, ... }:
|
||||
{ pkgs, lib, ... }:
|
||||
{
|
||||
imports = [
|
||||
../common/browser.nix
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
"sxhkd -m 1"
|
||||
"setxkbmap bepovim"
|
||||
"xrandr --output DisplayPort-1 --rate 60 --pos 0x0"
|
||||
"while pgrep -x polybar >/dev/null; do sleep 0.2; done; polybar main"
|
||||
"while pgrep -x polybar >/dev/null; do sleep 1; done; polybar main"
|
||||
"bash ~/.fehbg"
|
||||
];
|
||||
|
||||
|
|
@ -139,10 +139,10 @@
|
|||
settings = {
|
||||
general.import = [ "~/.cache/wal/colors-alacritty.toml" ];
|
||||
font = {
|
||||
normal = { family = "Iosevka Nerd Font"; style = "Regular"; };
|
||||
bold = { family = "Iosevka Nerd Font"; style = "Bold"; };
|
||||
italic = { family = "Iosevka Nerd Font"; style = "Italic"; };
|
||||
size = 9;
|
||||
normal = { family = lib.mkForce "Iosevka Nerd Font"; style = "Regular"; };
|
||||
bold = { family = lib.mkForce "Iosevka Nerd Font"; style = "Bold"; };
|
||||
italic = { family = lib.mkForce "Iosevka Nerd Font"; style = "Italic"; };
|
||||
size = lib.mkForce 9;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -9,8 +9,8 @@
|
|||
fastfetch
|
||||
nerd-fonts.iosevka
|
||||
obsidian
|
||||
proton-pass
|
||||
smug
|
||||
telegram-desktop
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue