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

View file

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

View file

@ -6,9 +6,9 @@
home = {
stateVersion = "23.05";
packages = with pkgs; [
firefox
thunderbird
discord
bitwarden
];
};
imports = [
@ -18,6 +18,27 @@
./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;
xsession.enable = true;
}