15 lines
195 B
Nix
Executable File
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
|
|
];
|
|
}
|