37 lines
841 B
Nix
37 lines
841 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Home Manager needs a bit of information about you and the paths it should
|
|
# manage.
|
|
home.username = "freya";
|
|
home.homeDirectory = "/home/freya";
|
|
home.stateVersion = "24.05"; # 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; [
|
|
# Main packages
|
|
starship
|
|
discord
|
|
thunderbird
|
|
cider
|
|
|
|
# Rust
|
|
rustup
|
|
gcc-unwrapped
|
|
openssl
|
|
|
|
# Java
|
|
jdk
|
|
];
|
|
|
|
# Let Home Manager install and manage itself.
|
|
programs.home-manager.enable = true;
|
|
}
|
|
|