small fix
This commit is contained in:
parent
adc323fccc
commit
03486e3312
1 changed files with 22 additions and 2 deletions
|
|
@ -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;[
|
environment.packages = with pkgs;[
|
||||||
neovim
|
neovim
|
||||||
git
|
git
|
||||||
fastfetch
|
fastfetch
|
||||||
|
|
||||||
|
(pkgs.writeShellScriptBin "droid-switch" ''
|
||||||
|
nix-on-droid switch --flake /data/data/com.termux.nix/files/home/nixos-config
|
||||||
|
'')
|
||||||
];
|
];
|
||||||
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue