feat: Added firefox config
This commit is contained in:
parent
e323caf345
commit
4374b84c4c
|
@ -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";
|
||||
|
|
|
@ -8,5 +8,6 @@
|
|||
pinentry
|
||||
arandr
|
||||
feh
|
||||
xclip
|
||||
];
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue