AAAAAAAAA

This commit is contained in:
Sakooooo 2023-09-03 20:10:40 +04:00
parent 81802d3807
commit be349c29ea
Signed by: sako
GPG key ID: 3FD715D87D7725E0
3 changed files with 4 additions and 4 deletions

View file

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

View file

@ -1,10 +1,10 @@
{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.desktop.browsers.ungoogled-chromium;
cfg = config.modules.desktop.browsers.chromium;
in
{
options.modules.desktop.browsers.ungoogled-chromium = {
options.modules.desktop.browsers.chromium= {
enable = mkEnableOption false;
};

View file

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