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 Normal View History

{
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
];
}