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 = { browsers = {
firefox.enable = true; firefox.enable = true;
qutebrowser.enable = false; qutebrowser.enable = false;
ungoogled-chromium = true; chromium = true;
}; };
apps = { apps = {
nemo.enable = true; nemo.enable = true;

View file

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

View file

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