nixcfg/hosts/mauville/home.nix

19 lines
312 B
Nix
Raw Normal View History

2024-03-28 19:52:15 -04:00
{
2024-04-07 22:16:33 -04:00
inputs,
config,
pkgs,
lib,
...
}: {
2024-03-28 19:52:15 -04:00
home-manager.users.aly = {
2024-04-07 22:16:33 -04:00
imports = [../../homeManagerModules];
2024-03-28 19:52:15 -04:00
home.username = "aly";
home.homeDirectory = "/home/aly";
home.stateVersion = "23.11";
programs.home-manager.enable = true;
xdg.userDirs.music = "/mnt/Media/Music";
2024-03-28 19:52:15 -04:00
};
}