clean browsers

This commit is contained in:
smayzy
2026-01-17 16:00:54 +01:00
parent 33ef812e07
commit 83143b1a05
5 changed files with 6 additions and 43 deletions
-2
View File
@@ -1,8 +1,6 @@
{ ... }:
{
imports = [
./firefox.nix
./librewolf.nix
./chromium.nix
];
}
-15
View File
@@ -1,15 +0,0 @@
{ lib, config, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.firefox.enable = mkOption {
type = types.bool;
default = false;
description = "firefox";
};
config = mkIf config.smayzy.firefox.enable {
programs.firefox.enable = true;
};
}
-20
View File
@@ -1,20 +0,0 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.librewolf.enable = mkOption {
type = types.bool;
default = false;
description = "librewolf";
};
config = mkIf config.smayzy.librewolf.enable {
environment.systemPackages = with pkgs; [ librewolf ];
};
}