aboutsummaryrefslogtreecommitdiff
path: root/hosts/macbook/home.nix
blob: bde968e7d23ebbfa0ecdecc736ccb4bab45c969d (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
{ 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

    nerd-fonts.symbols-only
  ];

  dev.enable = true;

  home.stateVersion = "25.05";
}