WIP
This commit is contained in:
@@ -11,6 +11,10 @@
|
||||
eza
|
||||
];
|
||||
|
||||
# imports = [
|
||||
# ./
|
||||
# ];
|
||||
|
||||
# For SSH access
|
||||
services.openssh.enable = true;
|
||||
|
||||
@@ -56,6 +56,9 @@
|
||||
};
|
||||
};
|
||||
|
||||
homeManagerModules.default = ./homeManagerModules;
|
||||
nixosModules.default = ./nixosModules;
|
||||
|
||||
# Standalone home-manager configuration entrypoint
|
||||
# Available through 'home-manager --flake .#your-username@your-hostname'
|
||||
homeConfigurations = {
|
||||
|
||||
9
home-manager/default.nix
Normal file
9
home-manager/default.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ user, repoPath, ... }:
|
||||
{
|
||||
programs.home-manager.enable = true;
|
||||
home = {
|
||||
stateVersion = "24.05";
|
||||
username = "${user}";
|
||||
homeDirectory = "${repoPath}";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user