code and firefox
This commit is contained in:
parent
185cf7c330
commit
7a91a50ffe
@ -1,6 +1,5 @@
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
inputs,
|
||||
...
|
||||
@ -12,9 +11,16 @@
|
||||
config = lib.mkIf config.firefox.enable {
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
|
||||
profiles.default = {
|
||||
|
||||
extensions = with inputs.firefox-addons.packages."x86_64-linux"; [
|
||||
#enhancer-for-youtube
|
||||
ublock-origin
|
||||
simple-translate
|
||||
duckduckgo-privacy-essentials
|
||||
return-youtube-dislikes
|
||||
user-agent-string-switcher
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
@ -18,7 +18,6 @@
|
||||
#programs.neovim.enable = true;
|
||||
|
||||
home.packages = with pkgs; [
|
||||
firefox
|
||||
librewolf
|
||||
discord
|
||||
|
||||
@ -64,6 +63,8 @@
|
||||
"steam"
|
||||
"steam-unwrapped"
|
||||
|
||||
"enhancer-for-youtube"
|
||||
|
||||
"gitkraken"
|
||||
# VSCODE
|
||||
"vscode"
|
||||
|
||||
@ -17,6 +17,7 @@
|
||||
enable = true;
|
||||
|
||||
userSettings = {
|
||||
"files.autoSave"= "afterDelay";
|
||||
"editor.fontSize" = 16;
|
||||
"editor.minimap.side"= "right";
|
||||
"editor.scrollbar.vertical"= "hidden";
|
||||
@ -34,6 +35,23 @@
|
||||
"workbench.productIconTheme"= "material-product-icons";
|
||||
"window.menuBarVisibility"= "toggle";
|
||||
"github.copilot.editor.enableAutoCompletions"= false;
|
||||
"nix.serverPath"= "nixd";
|
||||
"nix.enableLanguageServer"= true;
|
||||
"nix.serverSettings" = {
|
||||
"nixd" = {
|
||||
"formatting"= {
|
||||
"command"= [ "alejandra" ]; # or nixfmt or nixpkgs-fmt
|
||||
};
|
||||
# "options": {
|
||||
# "nixos": {
|
||||
# "expr": "(builtins.getFlake \"~/mysystem/").nixosConfigurations.laptop.options"
|
||||
# },
|
||||
# "home_manager": {
|
||||
# "expr": "(builtins.getFlake \"/PATH/TO/FLAKE\").homeConfigurations..options"
|
||||
# },
|
||||
# },
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
|
||||
Loading…
Reference in New Issue
Block a user