mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46: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:
parent
bda9deb791
commit
86402a17b6
424 changed files with 15 additions and 15 deletions
|
|
@ -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
Loading…
Add table
Add a link
Reference in a new issue