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