fixed chrome and added floorp 3

This commit is contained in:
cnst
2024-07-14 08:29:18 +02:00
parent bd04200da9
commit 477de1d21c
2 changed files with 27 additions and 2 deletions

View File

@@ -0,0 +1,26 @@
{
pkgs,
lib,
config,
inputs,
...
}: let
firefoxFlake = inputs.firefox-nightly.packages.${pkgs.stdenv.hostPlatform.system};
_firefoxNightly = firefoxFlake.firefox-nightly-bin;
_chromium = pkgs.chromium;
_floorp = pkgs.floorp-unwrapped;
in {
home.packages = lib.mkMerge [
(lib.mkIf (pkgs.hostPlatform.system == "x86_64-linux") (
with pkgs; [
# browsers
_firefoxNightly
pkgs.firefox-bin
_chromium
_floorp
]
))
];
}

View File

@@ -13,8 +13,7 @@
# extra
../../extra/foot
../../extra/browsers/firefox.nix
../../extra/browsers/chromium.nix
../../extra/browsers
../../extra/neovim
];
home = {