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