rename disko input to diskoConfig for clarity

This commit is contained in:
2024-10-10 14:40:41 -05:00
parent f11a6ab86e
commit bf08d28785
7 changed files with 379 additions and 214 deletions

View File

@@ -41,6 +41,8 @@
iconTheme.name = "Tokyonight-Dark";
};
externalPackages.enable = true;
services.mpris-proxy.enable = true;
programs.ssh.enable = true;

View File

@@ -34,7 +34,7 @@
};
hmModule = import ./. { inherit self; };
hmModule = { config, lib, pkgs, ... }: import ./. { inherit config lib pkgs self; };
};
}

View File

@@ -20,7 +20,7 @@
in {
hmModule = import ./. { inherit pkgs-us self; };
hmModule = { pkgs, ... }: import ./. { inherit pkgs pkgs-us self; };
};
}