39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
# Install system packages
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
# Basic necessities
|
||
|
wget
|
||
|
curl
|
||
|
neovim
|
||
|
# VCS
|
||
|
git
|
||
|
jujutsu
|
||
|
# Misc
|
||
|
vimix-cursors # SDDM Cursor theme
|
||
|
];
|
||
|
|
||
|
# Install zsh
|
||
|
programs.zsh.enable = true;
|
||
|
|
||
|
# Manage default firefox web browser install
|
||
|
programs.firefox = {
|
||
|
enable = true;
|
||
|
preferences = {
|
||
|
# Disable bullshit
|
||
|
"browser.ml.chat.enabled" = false;
|
||
|
"browser.aboutConfig.showWarning" = false;
|
||
|
"extensions.pocket.enabled" = false;
|
||
|
"browser.newtabpage.activity-stream.showSponsored" = false;
|
||
|
"browser.newtabpage.activity-stream.showSponsoredTopSites" = false;
|
||
|
"browser.newtabpage.activity-stream.feeds.section.topstories" = false;
|
||
|
"browser.newtabpage.activity-stream.feeds.system.topstories" = false;
|
||
|
"browser.urlbar.suggest.quicksuggest.sponsored" = false;
|
||
|
# Spite chrome
|
||
|
"image.jxl.enabled" = true;
|
||
|
# Security
|
||
|
"security.pki.certificate_transparency.mode" = true;
|
||
|
};
|
||
|
preferencesStatus = "locked";
|
||
|
};
|
||
|
}
|