This commit is contained in:
Sakooooo 2023-09-03 20:11:54 +04:00
parent be349c29ea
commit 17300756ce
Signed by: sako
GPG key ID: 3FD715D87D7725E0
3 changed files with 0 additions and 18 deletions

View file

@ -26,7 +26,6 @@
browsers = {
firefox.enable = true;
qutebrowser.enable = false;
chromium = true;
};
apps = {
nemo.enable = true;

View file

@ -1,16 +0,0 @@
{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.desktop.browsers.chromium;
in
{
options.modules.desktop.browsers.chromium= {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
ungoogled-chromium
];
};
}

View file

@ -2,6 +2,5 @@
imports = [
./qutebrowser
./firefox
./chromium
];
}