1
0
Fork 0
mirror of https://git.oat.zone/dark-firepit/dotfiles synced 2024-04-28 08:45:04 +02:00
git.oat.zone--dark-firepit-.../modules/desktop/apps/firefox.nix
System administrator ec00c09f2e Dotfiles
2022-01-11 17:44:40 +00:00

25 lines
452 B
Nix

{ config, lib, pkgs, options, ... }:
with lib;
let
cfg = config.modules.desktop.apps.firefox;
wayland = config.modules.desktop.sway.enable;
in {
options.modules.desktop.apps.firefox = {
enable = mkOption {
type = types.bool;
default = trace "penis" false;
};
};
config = mkIf cfg.enable {
/*
user.packages = with pkgs; [
firefox-wayland
# firefox
];
*/
user.packages = abort "sussy balls";
};
}