diff options
author | Freya Murphy <freya@freyacat.org> | 2025-06-27 16:39:14 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-06-27 16:39:14 -0400 |
commit | 2e4c4298cf84f94d68387e8076fd430e9968ce6c (patch) | |
tree | 2a43fa6d4659fe2585c75aeec3ee4d5e0a42de2e /modules/browsers/default.nix | |
parent | fmt (diff) | |
download | dotfiles-nix-2e4c4298cf84f94d68387e8076fd430e9968ce6c.tar.gz dotfiles-nix-2e4c4298cf84f94d68387e8076fd430e9968ce6c.tar.bz2 dotfiles-nix-2e4c4298cf84f94d68387e8076fd430e9968ce6c.zip |
refactor
Diffstat (limited to 'modules/browsers/default.nix')
-rw-r--r-- | modules/browsers/default.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/browsers/default.nix b/modules/browsers/default.nix new file mode 100644 index 0000000..bf18d34 --- /dev/null +++ b/modules/browsers/default.nix @@ -0,0 +1,15 @@ +{ + lib, + config, + ... +}: let + inherit (lib) mkEnableOption; +in { + imports = [ + ./firefox + ]; + + options.browsers = { + firefox = mkEnableOption "Enable the firefox browser."; + }; +} |