feat: add some gui apps

This commit is contained in:
2026-04-28 19:07:05 +02:00
parent 7c6acd39ba
commit 7b5a5b7fbe
7 changed files with 120 additions and 6 deletions

View File

@@ -1,8 +1,20 @@
{ userConfig, lib, ... }:
{
userConfig,
pkgs,
lib,
inputs,
...
}:
{
programs.chromium = {
enable = true;
package = lib.mkIf (!userConfig.isNixOS) null;
};
home.packages = with pkgs; [
inputs.zen-browser.packages."${pkgs.stdenv.hostPlatform.system}".default
tutanota-desktop
brave
];
}