nixcfg/hosts/slateport/home.nix

35 lines
585 B
Nix
Raw Permalink Normal View History

{
lib,
self,
...
}: {
home-manager.users.aly = lib.mkForce (
{pkgs, ...}: {
imports = [self.homeManagerModules.default];
home = {
homeDirectory = "/home/aly";
packages = with pkgs; [
curl
];
stateVersion = "24.05";
username = "aly";
};
programs = {
helix.defaultEditor = true;
home-manager.enable = true;
};
ar.home.apps = {
fastfetch.enable = true;
helix.enable = true;
shell.enable = true;
yazi.enable = true;
};
}
);
}