add flake/home-manager and standard cli programs

This commit is contained in:
2023-08-02 21:37:21 +02:00
parent 1d385aa703
commit 7536cd5097
13 changed files with 307 additions and 0 deletions

17
modules/home-manager.nix Normal file
View File

@@ -0,0 +1,17 @@
{
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
sharedModules = [{
home.stateVersion = "23.05";
}];
users = {
stefan = {
home.username = "stefan";
home.homeDirectory = "/home/stefan";
};
};
};
}