waaaa
This commit is contained in:
parent
f5c7956a7a
commit
73847d41e5
3 changed files with 18 additions and 0 deletions
|
@ -26,6 +26,7 @@
|
||||||
browsers = {
|
browsers = {
|
||||||
firefox.enable = true;
|
firefox.enable = true;
|
||||||
qutebrowser.enable = false;
|
qutebrowser.enable = false;
|
||||||
|
chromium.enable = true;
|
||||||
};
|
};
|
||||||
chat = {
|
chat = {
|
||||||
teams.enable = true;
|
teams.enable = true;
|
||||||
|
|
16
modules/desktop/browsers/chromium/default.nix
Normal file
16
modules/desktop/browsers/chromium/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{ 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; [
|
||||||
|
chromium
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2,5 +2,6 @@
|
||||||
imports = [
|
imports = [
|
||||||
./qutebrowser
|
./qutebrowser
|
||||||
./firefox
|
./firefox
|
||||||
|
./chromium
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue