summaryrefslogtreecommitdiff
path: root/home/home.nix
blob: f69e6abb63a81f978be733ca44f02404579afe6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ 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 = "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; [
    # Main packages
    starship
    discord
    thunderbirdPackages.thunderbird-115
    cider
    #steam

    # Rust
    rustup
    gcc-unwrapped
    openssl

    # Java
    jdk
    maven
    jetbrains.idea-community

    # Lua
    lua
    lua52Packages.dkjson
    lua52Packages.luaposix
  ];

  # Let Home Manager install and manage itself.
  programs.home-manager.enable = true;
}