nix-community.nixvim/tests/platforms/nixos.nix

23 lines
360 B
Nix
Raw Normal View History

{
self,
system,
}:
self.inputs.nixpkgs.lib.nixosSystem {
inherit system;
modules = [
{
system.stateVersion = "25.05";
boot.loader.systemd-boot.enable = true;
2024-05-05 19:39:35 +02:00
fileSystems."/" = {
device = "/non/existent/device";
};
programs.nixvim = {
enable = true;
};
}
self.nixosModules.nixvim
];
}