summaryrefslogtreecommitdiff
path: root/nixos/modules/features/browsers
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/features/browsers')
-rw-r--r--nixos/modules/features/browsers/default.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/nixos/modules/features/browsers/default.nix b/nixos/modules/features/browsers/default.nix
new file mode 100644
index 0000000..2551221
--- /dev/null
+++ b/nixos/modules/features/browsers/default.nix
@@ -0,0 +1,9 @@
+{ pkgs, inputs, ... }:
+
+{
+ environment.systemPackages = with pkgs; [
+ inputs.helium-browser.packages.${pkgs.stdenv.hostPlatform.system}.helium
+ librewolf
+ chromium
+ ];
+}