fixed chrome and added floorp
This commit is contained in:
24
home/extra/browsers/default.nix
Normal file
24
home/extra/browsers/default.nix
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
inputs,
|
||||
...
|
||||
}: let
|
||||
firefoxFlake = inputs.firefox-nightly.packages.${pkgs.stdenv.hostPlatform.system};
|
||||
_firefoxNightly = firefoxFlake.firefox-nightly-bin;
|
||||
|
||||
_chrome = pkgs.ungoogled-chromium {commandLineArgs = ["--force-dark-mode"];};
|
||||
in {
|
||||
home.packages = lib.mkMerge [
|
||||
(lib.mkIf (pkgs.hostPlatform.system == "x86_64-linux") (
|
||||
with pkgs; [
|
||||
# browsers
|
||||
_firefoxNightly
|
||||
pkgs.firefox-bin
|
||||
_chrome
|
||||
floorp
|
||||
]
|
||||
))
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user