generated from john/nix-docker
WIP
This commit is contained in:
@@ -11,6 +11,10 @@
|
|||||||
eza
|
eza
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# imports = [
|
||||||
|
# ./
|
||||||
|
# ];
|
||||||
|
|
||||||
# For SSH access
|
# For SSH access
|
||||||
services.openssh.enable = true;
|
services.openssh.enable = true;
|
||||||
|
|
||||||
@@ -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
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