fixed chrome and added floorp 2

This commit is contained in:
cnst
2024-07-14 08:20:41 +02:00
parent fbd9f22966
commit bd04200da9
5 changed files with 33 additions and 25 deletions

View File

@@ -1,24 +0,0 @@
{
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
]
))
];
}