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