feat: Added firefox config

This commit is contained in:
Patrick Großmann 2023-01-21 21:56:47 +01:00
parent e323caf345
commit 4374b84c4c
Signed by: patrick
GPG key ID: 451F95EFB8BECD0F
6 changed files with 27 additions and 4 deletions

View file

@ -9,6 +9,7 @@
sqlite sqlite
bat bat
ripgrep ripgrep
killall
]; ];
programs.gpg = { programs.gpg = {
@ -16,11 +17,11 @@
scdaemonSettings.disable-ccid = true; scdaemonSettings.disable-ccid = true;
publicKeys = [ publicKeys = [
{ {
source = ../../data/pubkey.gpg; source = ../../data/gpg/pubkey.gpg;
trust = 5; trust = 5;
} }
{ {
source = ../../data/newpubkey.gpg; source = ../../data/gpg/newpubkey.gpg;
trust = 5; trust = 5;
} }
]; ];
@ -61,7 +62,7 @@
programs.zsh = { programs.zsh = {
enable = true; enable = true;
initExtra = builtins.readFile ../../data/zshrc; initExtra = builtins.readFile ../../data/zsh/zshrc;
plugins = [ plugins = [
{ {
name = "powerlevel10k"; name = "powerlevel10k";

View file

@ -8,5 +8,6 @@
pinentry pinentry
arandr arandr
feh feh
xclip
]; ];
} }

View file

@ -6,9 +6,9 @@
home = { home = {
stateVersion = "23.05"; stateVersion = "23.05";
packages = with pkgs; [ packages = with pkgs; [
firefox
thunderbird thunderbird
discord discord
bitwarden
]; ];
}; };
imports = [ imports = [
@ -18,6 +18,27 @@
./common ./common
]; ];
programs.firefox = {
enable = true;
profiles.patrick = {
userChrome = ''
#TabsToolbar {
visibility: collapse;
}
#titlebar {
margin-bottom: !important;
}
#titlebar-buttonbox {
height: 32px !important;
}
'';
search.default = "DuckDuckGo";
search.force = true;
};
};
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
xsession.enable = true; xsession.enable = true;
} }