mirror of
https://github.com/ParkerTenBroeck/dotfiles.git
synced 2026-06-06 21:00:35 -04:00
19 lines
313 B
Nix
19 lines
313 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# assorted stuff until I decide where it goes
|
|
home-manager.users.may = { pkgs, ... }: {
|
|
home.packages = with pkgs; [
|
|
openjdk21
|
|
vlc
|
|
spotify
|
|
vscode
|
|
jetbrains.idea
|
|
obs-studio
|
|
discord
|
|
jetbrains.rust-rover
|
|
halloy
|
|
dino
|
|
];
|
|
};
|
|
}
|