mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
23 lines
363 B
Nix
23 lines
363 B
Nix
{
|
|
nixvim,
|
|
nixpkgs,
|
|
system,
|
|
}:
|
|
nixpkgs.lib.nixosSystem {
|
|
inherit system;
|
|
|
|
modules = [
|
|
{
|
|
system.stateVersion = "24.05";
|
|
boot.loader.systemd-boot.enable = true;
|
|
fileSystems."/" = {
|
|
device = "/non/existent/device";
|
|
};
|
|
|
|
programs.nixvim = {
|
|
enable = true;
|
|
};
|
|
}
|
|
nixvim.nixosModules.nixvim
|
|
];
|
|
}
|