renamed entrypoint modules to default.nix

This commit is contained in:
Gabe Venberg 2024-03-27 11:30:17 -05:00
parent f25e8b716e
commit c5ffac15d3
13 changed files with 16 additions and 16 deletions

View file

@ -0,0 +1,21 @@
{
config,
pkgs,
lib,
...
}: {
home.stateVersion = "23.11"; # Please read the comment before changing.
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
# enable flakes
nix =
lib.mkIf config.targets.genericLinux.enable
{
package = pkgs.nix;
settings.experimental-features = ["nix-command" "flakes"];
settings.max-jobs = "auto";
gc.automatic = true;
};
}