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.
|
2024-06-21 18:11:32 +00:00
|
|
|
home.username = "freya";
|
|
|
|
home.homeDirectory = "/home/freya";
|
2024-10-20 16:50:10 +00:00
|
|
|
home.stateVersion = "24.05"; # Please read the comment before changing.
|
2023-09-05 03:21:01 +00:00
|
|
|
|
|
|
|
# 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; [
|
2023-09-14 12:59:36 +00:00
|
|
|
# Main packages
|
2023-09-05 03:21:01 +00:00
|
|
|
starship
|
|
|
|
discord
|
2024-10-20 16:50:10 +00:00
|
|
|
thunderbird
|
2023-10-07 16:24:28 +00:00
|
|
|
cider
|
2023-09-29 14:36:21 +00:00
|
|
|
|
2023-09-14 12:59:36 +00:00
|
|
|
# Rust
|
2023-09-05 03:21:01 +00:00
|
|
|
rustup
|
2023-09-14 12:59:36 +00:00
|
|
|
gcc-unwrapped
|
2023-09-29 14:36:21 +00:00
|
|
|
openssl
|
2023-09-14 12:59:36 +00:00
|
|
|
|
|
|
|
# Java
|
2023-09-06 01:07:58 +00:00
|
|
|
jdk
|
2023-09-05 03:21:01 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
# Let Home Manager install and manage itself.
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
}
|
|
|
|
|