2023-09-05 03:21:01 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
# Home Manager needs a bit of information about you and the paths it should
|
|
|
|
# manage.
|
|
|
|
home.username = "tylerm";
|
|
|
|
home.homeDirectory = "/home/tylerm";
|
|
|
|
home.stateVersion = "22.11"; # Please read the comment before changing.
|
|
|
|
|
|
|
|
# This value will set some environment variables to allow home-manager to
|
|
|
|
# function better outside of NixOS
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
targets.genericLinux.enable = true;
|
|
|
|
fonts.fontconfig.enable = true;
|
|
|
|
|
|
|
|
# The home.packages option allows you to install Nix packages into your
|
|
|
|
# environment.
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
yt-dlp
|
|
|
|
starship
|
|
|
|
discord
|
|
|
|
thunderbirdPackages.thunderbird-115
|
|
|
|
rustup
|
|
|
|
glibc
|
|
|
|
gcc
|
2023-09-06 01:07:58 +00:00
|
|
|
jdk
|
|
|
|
maven
|
2023-09-07 03:50:18 +00:00
|
|
|
|
|
|
|
lua
|
|
|
|
lua52Packages.dkjson
|
|
|
|
lua52Packages.luaposix
|
2023-09-05 03:21:01 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
# Let Home Manager install and manage itself.
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
}
|
|
|
|
|