12 lines
184 B
Nix
12 lines
184 B
Nix
|
{ pkgs, ... }: {
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
# Tool to allow hashing passwords from the cmd
|
||
|
mkpasswd
|
||
|
|
||
|
vscodium
|
||
|
google-chrome
|
||
|
discord
|
||
|
git
|
||
|
];
|
||
|
}
|