Files
nix-config/hosts/mac-nixos/home.nix
2025-07-01 22:14:30 -05:00

15 lines
195 B
Nix
Executable File

{ pkgs, ... }:
{
home.username = "matt";
home.homeDirectory = "/home/matt";
home.stateVersion = "23.11";
home.packages = with pkgs; [
iw
iwd
orca-slicer
vscodium
];
}