mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
22 lines
360 B
Nix
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
|
|
];
|
|
}
|