browser: separated into new file

This commit is contained in:
2026-05-17 10:11:52 +02:00
parent 52346aa1e8
commit 8ad5082fd0
3 changed files with 15 additions and 3 deletions
+1 -2
View File
@@ -36,6 +36,7 @@
../../modules/nixos/development.nix ../../modules/nixos/development.nix
../../modules/nixos/user.nix ../../hostsModules/laptop/nixos/user.nix ../../modules/nixos/user.nix ../../hostsModules/laptop/nixos/user.nix
../../modules/nixos/notifications.nix ../../modules/nixos/notifications.nix
../../modules/nixos/browser.nix
]; ];
qt.enable = true; qt.enable = true;
@@ -74,7 +75,6 @@
pkgs-unstable.vimPluginsUpdater # used for building plugins pkgs-unstable.vimPluginsUpdater # used for building plugins
hyprcursor hyprcursor
vial # Open-source GUI and QMK fork for configuring your keyboard in real time vial # Open-source GUI and QMK fork for configuring your keyboard in real time
chromium # used only to flash the firmware on my framework laptop 16 (keyboard.frame.work) as only chromium based browser support webHID.
capitaine-cursors-themed # cursor theme capitaine-cursors-themed # cursor theme
usbutils # used for lsusb usbutils # used for lsusb
# used for the framework 16 laptop # used for the framework 16 laptop
@@ -92,7 +92,6 @@
# this is more up to date # this is more up to date
#(callPackage ../../modules/packages/vivify.nix {}) #(callPackage ../../modules/packages/vivify.nix {})
#(callPackage ../../modules/packages/sbb-tui.nix {}) #(callPackage ../../modules/packages/sbb-tui.nix {})
pkgs-unstable.tor-browser
pkgs-unstable.bitwarden-desktop pkgs-unstable.bitwarden-desktop
]; ];
-1
View File
@@ -72,7 +72,6 @@
(pkgs.callPackage ../../modules/scripts/colorpicker.nix {}) (pkgs.callPackage ../../modules/scripts/colorpicker.nix {})
(pkgs.callPackage ../../modules/scripts/killall.nix {}) # kill all windows except focused window (pkgs.callPackage ../../modules/scripts/killall.nix {}) # kill all windows except focused window
(pkgs.callPackage ../../modules/scripts/tomato.nix {}) (pkgs.callPackage ../../modules/scripts/tomato.nix {})
(pkgs.callPackage ../../modules/scripts/librewolfprofiles.nix {})
(pkgs.callPackage ../../modules/scripts/btm.nix {}) (pkgs.callPackage ../../modules/scripts/btm.nix {})
(pkgs.callPackage ../../modules/scripts/trimmer.nix {}) (pkgs.callPackage ../../modules/scripts/trimmer.nix {})
(pkgs.callPackage ../../modules/scripts/syllabes.nix {}) # python script to get number of syllabes in french (pkgs.callPackage ../../modules/scripts/syllabes.nix {}) # python script to get number of syllabes in french
+14
View File
@@ -0,0 +1,14 @@
# configuration for main browser is in ../home-manager/librewolf.nix
# configuration for qutebrowser is in ../home-manager/vivify.nix
{
pkgs,
pkgs-unstable,
...
}:
{
environment.systemPackages = with pkgs; [
chromium # used only to flash the firmware on my framework laptop 16 (keyboard.frame.work) as only chromium based browser support webHID.
pkgs-unstable.tor-browser
(pkgs.callPackage ../../modules/scripts/librewolfprofiles.nix {}) # fzf librewolf profile selector
];
}