Run nixfmt

This commit is contained in:
2024-02-27 22:20:00 +01:00
parent 4d82957b22
commit 5eb076d8d4
17 changed files with 126 additions and 162 deletions

View File

@@ -1,9 +1,6 @@
{ pkgs, config, lib, inputs, user, ...}: {
{ pkgs, config, lib, inputs, user, ... }: {
options.firefox.enable = lib.mkEnableOption "Firefox";
config = lib.mkIf config.firefox.enable {
programs.firefox = {
enable = true;
};
};
config =
lib.mkIf config.firefox.enable { programs.firefox = { enable = true; }; };
}