Vim/ru: Difference between revisions
Created page with "outputs = inputs@{ nixpkgs, ... }: { nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = { inherit inputs; }; modules = [ ./configuration.nix ./hardware-configuration.nix { nix.registry.nixpkgs.flake = nixpkgs; } ]; }; }; } </syntaxHighlight>" Tags: Mobile edit Mobile web edit |
Created page with "<code>configuration.nix</code>: <syntaxHighlight lang="nix"> { inputs, ... }: { nixpkgs = { overlays = [ (self: super: let winresizer-vim = super.vimUtils.buildVimPlugin { name = "winresizer-vim"; src = inputs.winresizer-vim; }; in { vimPlugins = super.vimPlugins // { inherit winresizer-vim; }; } ) ]; }; </syntaxHighlight>" |
||
| Line 375: | Line 375: | ||
</div> | </div> | ||
<code>configuration.nix</code>: | <code>configuration.nix</code>: | ||
<syntaxHighlight lang="nix"> | <syntaxHighlight lang="nix"> | ||
| Line 399: | Line 398: | ||
}; | }; | ||
</syntaxHighlight> | </syntaxHighlight> | ||
<div lang="en" dir="ltr" class="mw-content-ltr"> | <div lang="en" dir="ltr" class="mw-content-ltr"> | ||