nixcfg/hosts/mauville/home.nix

23 lines
433 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,
...
}: {
home-manager.sharedModules = [
{
imports = [../../homeManagerModules];
xdg.userDirs.music = "/mnt/Media/Music";
alyraffauf.desktop.hyprland.autoSuspend = false;
alyraffauf.desktop.sway.autoSuspend = false;
}
];
2024-03-28 19:52:15 -04:00
home-manager.users.aly = {
imports = [../../aly.nix];
2024-03-28 19:52:15 -04:00
};
home-manager.users.dustin = {
imports = [../../dustin.nix];
};
2024-03-28 19:52:15 -04:00
}