feat: tried adding home manager for servers.

This commit is contained in:
CronyAkatsuki 2025-03-23 21:01:06 +01:00
parent a1ddec621b
commit 04ca0c28a4
2 changed files with 14 additions and 0 deletions

7
hosts/server/home.nix Normal file
View file

@ -0,0 +1,7 @@
{pkgs, ...}: {
home.username = "ivek";
home.homeDirectory = "/home/ivek";
home.stateVersion = "24.11";
programs.home-manager.enable = true;
}