14 lines
141 B
Nix
14 lines
141 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./formatters.nix
|
||
|
./nix.nix
|
||
|
];
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
git
|
||
|
just
|
||
|
];
|
||
|
}
|