aboutsummaryrefslogtreecommitdiff
path: root/hosts/lilith/home.nix
blob: 3f65c51bb5b19892a76966ee42f47a302968f5e1 (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
{ pkgs, username, ... }:

{
  imports = [
    ../../modules/home-manager
  ];

  home.username = username;
  home.homeDirectory = "/Users/${username}";

  home.packages = with pkgs; [
    htop
    ffmpeg
    wget
    imagemagick

    gcc
    maven
    cmake
    gnupg
    lua

    zathura

    nerd-fonts.symbols-only
  ];

  dev.enable = true;
  spicetify.enable = true;

  home.stateVersion = "25.05";
}