21 bite-sized beginner tutorials (Web Basics, APIs & Data), the 8-backend blog engine series, 4 blog frontends, 2 React starters, 3 NixOS desktops and 4 Rust API/pipeline boilerplates. Every folder is a complete, self-contained project with its own README. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01VGNxPf9PrSG2kzrxSvn45Y
21 lines
502 B
Nix
21 lines
502 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
home.username = "user"; # rename me
|
|
home.homeDirectory = "/home/user";
|
|
|
|
# Release of first install; do not bump when upgrading.
|
|
home.stateVersion = "26.05";
|
|
|
|
# Plasma keeps its own settings in ~/.config (System Settings writes them),
|
|
# so the home side stays minimal: user packages and git identity.
|
|
home.packages = with pkgs; [ firefox ];
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
settings.user = {
|
|
name = "user";
|
|
email = "user@example.com";
|
|
};
|
|
};
|
|
}
|