Revert "nix: added firefox"

This reverts commit b6911bc045.
This commit is contained in:
biscuit
2025-06-11 07:04:30 -05:00
parent 2ba8639dfd
commit f4788f863e
4 changed files with 48 additions and 35 deletions
+16 -6
View File
@@ -1,6 +1,6 @@
{
hostname = "MacBook-Nix";
username = "lsoriano";
hostname = "nixos";
username = "biscuit";
timezone = "America/Chicago";
vpn = {
@@ -9,8 +9,8 @@
};
terminal = {
termFont = "JetBrainsMono Nerd Font"; # e.g., JetBrainsMono Nerd Font
termSize = "24";
termFont = "Monolisa"; # e.g., JetBrainsMono Nerd Font
termSize = "18";
termShell = "fish";
shellAliases = {
@@ -32,10 +32,20 @@
touchpadSupport = false;
# Custom Applications
linux-apps = pkgs:
linux-apps = {
gamingDesktop = true; # adds steam
my-apps = pkgs:
with pkgs; [
delfin
jellyfin-media-player
];
};
hyprconf = {
monitor = [
"DP-1,highres@highrr,0x1080,auto"
"HDMI-A-2,highres@highrr,0x0,auto"
];
};
sshExtraConfig = ''
Host macair
-1
View File
@@ -5,7 +5,6 @@
}: {
imports =
[
../pkgs/firefox/default.nix
]
++ lib.optionals (linux-apps.gamingDesktop == true) [
../pkgs/steam/default.nix
+3
View File
@@ -2,4 +2,7 @@
info = import ../../config.nix;
in {
home.packages = info.linux-apps.my-apps pkgs;
import = [
../../pkgs/firefox/default.nix
];
}
+2 -1
View File
@@ -61,7 +61,7 @@ in {
"tridactyl.vim@cmcaine.co.uk" = {
install_url = "https://addons.mozilla.org/firefox/downloads/file/4405615/tridactyl_vim-1.24.2.xpi";
installation_mode = "force_installed";
};
}
# Privacy Badger:
# "jid1-MnnxcxisBPnSXQ@jetpack" = {
# install_url = "https://addons.mozilla.org/firefox/downloads/latest/privacy-badger17/latest.xpi";
@@ -103,4 +103,5 @@ in {
};
};
};
};
}