1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00

treewide: flatten single file modules

Some files don't need nesting and can be root level again to reduce
conflicts with other PRs.

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Austin Horstman 2025-06-23 10:56:23 -05:00
parent bda9deb791
commit 86402a17b6
424 changed files with 15 additions and 15 deletions

View file

@ -7,7 +7,7 @@ let
cfg = config.programs.floorp; cfg = config.programs.floorp;
mkFirefoxModule = import ../firefox/mkFirefoxModule.nix; mkFirefoxModule = import ./firefox/mkFirefoxModule.nix;
in in
{ {
meta.maintainers = [ lib.hm.maintainers.bricked ]; meta.maintainers = [ lib.hm.maintainers.bricked ];

View file

@ -29,6 +29,6 @@ in
}; };
config = lib.mkIf (cfg.enable && !config.submoduleSupport.enable) { config = lib.mkIf (cfg.enable && !config.submoduleSupport.enable) {
home.packages = [ (pkgs.callPackage ../../../home-manager { inherit (cfg) path; }) ]; home.packages = [ (pkgs.callPackage ../../home-manager { inherit (cfg) path; }) ];
}; };
} }

Some files were not shown because too many files have changed in this diff Show more