11 lines
123 B
Nix
11 lines
123 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
neovim
|
|
firefox
|
|
neofetch
|
|
tree
|
|
];
|
|
}
|
|
|