14 lines
206 B
Nix
14 lines
206 B
Nix
{pkgs, ...}: {
|
|
home = {
|
|
username = "pim";
|
|
homeDirectory = "/home/pim";
|
|
stateVersion = "24.05";
|
|
};
|
|
|
|
home.packages = with pkgs.unstable; [
|
|
devenv
|
|
vlc
|
|
handbrake
|
|
lutris
|
|
];
|
|
}
|