nix-community.nixvim/tests/platforms/nixos.nix
Gaetan Lepage da74b41118 treewide: replace mentions of 24.11 with 25.05
(cherry picked from commit 764a9b8dda)
2025-05-24 08:44:42 +00:00

22 lines
360 B
Nix

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