clean chromium

This commit is contained in:
smayzy 2026-04-07 17:57:27 +02:00
parent b73a6f488b
commit 20413934e4
5 changed files with 2 additions and 32 deletions

View File

@ -1,23 +0,0 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.chromium.enable = mkOption {
type = types.bool;
default = false;
description = "chromium";
};
config = mkIf config.smayzy.chromium.enable {
programs.chromium.enable = true;
environment.systemPackages = with pkgs; [
chromium
];
};
}

View File

@ -1,6 +0,0 @@
{ ... }:
{
imports = [
./chromium.nix
];
}

View File

@ -3,7 +3,6 @@
imports = [ imports = [
./audio ./audio
./base-cli ./base-cli
./browser
./containers ./containers
./de ./de
./displaymanager ./displaymanager

View File

@ -28,7 +28,6 @@ in
gaming.enable = true; gaming.enable = true;
}; };
tor.enable = true; tor.enable = true;
chromium.enable = true;
wireshark.enable = true; wireshark.enable = true;
alacritty.enable = true; alacritty.enable = true;
mail.enable = true; mail.enable = true;
@ -58,6 +57,7 @@ in
qbittorrent qbittorrent
android-tools android-tools
gdb gdb
chromium
]; ];
}; };
} }

View File

@ -32,7 +32,6 @@ in
}; };
tor.enable = true; tor.enable = true;
alacritty.enable = true; alacritty.enable = true;
chromium.enable = true;
wireshark.enable = true; wireshark.enable = true;
steam.enable = true; steam.enable = true;
mail.enable = true; mail.enable = true;
@ -60,6 +59,7 @@ in
arduino-cli arduino-cli
firejail firejail
gdb gdb
chromium
]; ];
}; };
} }