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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
363 B
Nix
Raw Permalink Normal View History

{
nixvim,
nixpkgs,
system,
}:
nixpkgs.lib.nixosSystem {
inherit system;
modules = [
{
2024-06-06 12:20:42 +02:00
system.stateVersion = "24.05";
boot.loader.systemd-boot.enable = true;
fileSystems."/" = {
device = "/non/existent/device";
};
programs.nixvim = {
enable = true;
};
}
nixvim.nixosModules.nixvim
];
}