nixcfg/hosts/lavaridge/home.nix

15 lines
299 B
Nix
Raw Normal View History

2024-03-28 19:52:15 -04:00
{ inputs, config, pkgs, lib, ... }:
{
home-manager.users.aly = {
imports = [ ../../homeManagerModules ];
home.username = "aly";
home.homeDirectory = "/home/aly";
home.stateVersion = "23.11";
programs.home-manager.enable = true;
desktopEnv.hyprland.enable = true;
};
}