1
Fork 0
nixos-plasma/home/user.nix
Leonardo Devai 7daa8afc79 Add the devai.io boilerplate library: 42 runnable projects
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
2026-07-19 16:31:48 +02:00

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";
};
};
}