mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-15 12:54:15 +01:00
15 lines
152 B
Nix
15 lines
152 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./editorconfig
|
|
./nix
|
|
./npm
|
|
./rust
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
marksman
|
|
];
|
|
}
|