Changed nixvim to nvf

This commit is contained in:
Aleksandr Lebedev 2025-01-06 23:29:45 +01:00
parent 9f55457ddf
commit b66cb9f49d
10 changed files with 4988 additions and 410 deletions

View file

@ -1,21 +1,25 @@
{ pkgs, inputs, ... }:
{
imports = [
];
environment.packages = with pkgs;[
neovim
git
fastfetch
pkgs,
inputs,
...
}: {
imports = [
];
environment.packages = with pkgs; [
neovim
git
fastfetch
inputs.neovim.packages.aarch64-linux.default
(pkgs.writeShellScriptBin "droid-switch" ''
nix-on-droid switch --flake /data/data/com.termux.nix/files/home/nixos-config
'')
];
home-manager = {
config = ./home.nix;
useGlobalPkgs = true;
};
(pkgs.writeShellScriptBin "droid-switch" ''
nix-on-droid switch --flake /data/data/com.termux.nix/files/home/nixos-config
'')
];
system.stateVersion = "24.05";
home-manager = {
config = ./home.nix;
useGlobalPkgs = true;
};
system.stateVersion = "24.05";
}