mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-06-08 18:58:19 +02:00
15 lines
241 B
Nix
15 lines
241 B
Nix
{ pkgs, modulesPath, ... }:
|
|
|
|
{
|
|
imports = [
|
|
(modulesPath + "/virtualisation/digital-ocean-image.nix")
|
|
];
|
|
|
|
environment.systemPackages = [ pkgs.neovim ];
|
|
|
|
nix.settings.experimental-features = [
|
|
"nix-command"
|
|
"flakes"
|
|
];
|
|
}
|