mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-11 09:29:41 +08: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:
@@ -7,7 +7,7 @@ let
|
||||
|
||||
cfg = config.programs.floorp;
|
||||
|
||||
mkFirefoxModule = import ../firefox/mkFirefoxModule.nix;
|
||||
mkFirefoxModule = import ./firefox/mkFirefoxModule.nix;
|
||||
in
|
||||
{
|
||||
meta.maintainers = [ lib.hm.maintainers.bricked ];
|
||||
@@ -29,6 +29,6 @@ in
|
||||
};
|
||||
|
||||
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
Reference in New Issue
Block a user