Add more browser options

This commit is contained in:
Evie Litherland-Smith 2023-04-13 07:13:01 +01:00
parent 654164b27c
commit 66861e0af5
3 changed files with 6 additions and 2 deletions

View file

@ -1,7 +1,7 @@
{ ... }: { { ... }: {
imports = [ imports = [
./env/sway.nix ./env/sway.nix
./packages/env ./packages/env/bash.nix
./packages/tui ./packages/tui
./packages/gui/browser.nix ./packages/gui/browser.nix
./packages/gui/foot.nix ./packages/gui/foot.nix

View file

@ -1,5 +1,8 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
imports = [ ./common.nix ]; imports = [ ./common.nix ];
home.packages = with pkgs; [ firefox ]; home.packages = with pkgs; [
firefox
chromium
];
} }

View file

@ -29,5 +29,6 @@
}) })
file file
silver-searcher silver-searcher
lynx
]; ];
} }