small fix

This commit is contained in:
Aleksandr Lebedev 2025-01-06 20:41:21 +01:00
parent adc323fccc
commit 03486e3312

View file

@ -1,10 +1,30 @@
{ pkgs, ... }:
{ pkgs, inputs, ... }:
{
imports = [
inputs.nixvim.nixosModules.nixvim
];
programs.nixvim = {
enable = true;
defaultEditor = true;
colorschemes.catppuccin.enable = true;
plugins = {
lualine.enable = true;
};
opts = {
number = true;
shiftwidth = 4;
};
};
environment.packages = with pkgs;[
neovim
git
fastfetch
(pkgs.writeShellScriptBin "droid-switch" ''
nix-on-droid switch --flake /data/data/com.termux.nix/files/home/nixos-config
'')
];
home-manager = {