This commit is contained in:
John Lancaster
2024-12-08 12:45:06 -06:00
parent 41bf8a074e
commit fee9256b39
5 changed files with 16 additions and 0 deletions

View File

@@ -11,6 +11,10 @@
eza eza
]; ];
# imports = [
# ./
# ];
# For SSH access # For SSH access
services.openssh.enable = true; services.openssh.enable = true;

View File

@@ -56,6 +56,9 @@
}; };
}; };
homeManagerModules.default = ./homeManagerModules;
nixosModules.default = ./nixosModules;
# Standalone home-manager configuration entrypoint # Standalone home-manager configuration entrypoint
# Available through 'home-manager --flake .#your-username@your-hostname' # Available through 'home-manager --flake .#your-username@your-hostname'
homeConfigurations = { homeConfigurations = {

9
home-manager/default.nix Normal file
View File

@@ -0,0 +1,9 @@
{ user, repoPath, ... }:
{
programs.home-manager.enable = true;
home = {
stateVersion = "24.05";
username = "${user}";
homeDirectory = "${repoPath}";
};
}