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"; hostname = "nixos";
username = "lsoriano"; username = "biscuit";
timezone = "America/Chicago"; timezone = "America/Chicago";
vpn = { vpn = {
@@ -9,8 +9,8 @@
}; };
terminal = { terminal = {
termFont = "JetBrainsMono Nerd Font"; # e.g., JetBrainsMono Nerd Font termFont = "Monolisa"; # e.g., JetBrainsMono Nerd Font
termSize = "24"; termSize = "18";
termShell = "fish"; termShell = "fish";
shellAliases = { shellAliases = {
@@ -32,10 +32,20 @@
touchpadSupport = false; touchpadSupport = false;
# Custom Applications # Custom Applications
linux-apps = pkgs: linux-apps = {
gamingDesktop = true; # adds steam
my-apps = pkgs:
with pkgs; [ with pkgs; [
delfin jellyfin-media-player
]; ];
};
hyprconf = {
monitor = [
"DP-1,highres@highrr,0x1080,auto"
"HDMI-A-2,highres@highrr,0x0,auto"
];
};
sshExtraConfig = '' sshExtraConfig = ''
Host macair Host macair
-1
View File
@@ -5,7 +5,6 @@
}: { }: {
imports = imports =
[ [
../pkgs/firefox/default.nix
] ]
++ lib.optionals (linux-apps.gamingDesktop == true) [ ++ lib.optionals (linux-apps.gamingDesktop == true) [
../pkgs/steam/default.nix ../pkgs/steam/default.nix
+3
View File
@@ -2,4 +2,7 @@
info = import ../../config.nix; info = import ../../config.nix;
in { in {
home.packages = info.linux-apps.my-apps pkgs; 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" = { "tridactyl.vim@cmcaine.co.uk" = {
install_url = "https://addons.mozilla.org/firefox/downloads/file/4405615/tridactyl_vim-1.24.2.xpi"; install_url = "https://addons.mozilla.org/firefox/downloads/file/4405615/tridactyl_vim-1.24.2.xpi";
installation_mode = "force_installed"; installation_mode = "force_installed";
}; }
# Privacy Badger: # Privacy Badger:
# "jid1-MnnxcxisBPnSXQ@jetpack" = { # "jid1-MnnxcxisBPnSXQ@jetpack" = {
# install_url = "https://addons.mozilla.org/firefox/downloads/latest/privacy-badger17/latest.xpi"; # install_url = "https://addons.mozilla.org/firefox/downloads/latest/privacy-badger17/latest.xpi";
@@ -103,4 +103,5 @@ in {
}; };
}; };
}; };
};
} }