Add base home-manager flake

Signed-off-by: George Kaklamanos <gkaklas@gkaklas.gr>
This commit is contained in:
George Kaklamanos 2024-04-28 22:30:09 +03:00
parent e0e32ffc84
commit e792137d5b
No known key found for this signature in database
GPG key ID: C0CAB8A6BDC9399D
3 changed files with 86 additions and 0 deletions

10
home-manager/home.nix Normal file
View file

@ -0,0 +1,10 @@
{
config,
lib,
...
}: {
programs.home-manager.enable = true;
home.username = "gkaklas";
home.homeDirectory = "/home/gkaklas";
home.stateVersion = "23.11";
}