18 lines
234 B
Nix
18 lines
234 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
greg = {
|
|
development = true;
|
|
gnome = true;
|
|
gui = true;
|
|
vscodium = true;
|
|
zed = true;
|
|
};
|
|
home.packages = with pkgs; [
|
|
bitwarden-cli
|
|
cargo
|
|
freeciv
|
|
wineWowPackages.stable
|
|
];
|
|
}
|