1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-03-03 19:32:09 +00:00
This commit is contained in:
Rae 5e 2024-12-19 22:10:05 -05:00
parent 96a94cedbd
commit 12bffc5102
3 changed files with 12 additions and 3 deletions

View file

@ -35,7 +35,7 @@
pkgs = nixpkgs.legacyPackages.x86_64-linux;
extraSpecialArgs = { inherit inputs; };
modules = [
./home.nix
./home
(import ./overlays)
];
};

View file

@ -121,11 +121,14 @@
vimAlias = true;
plugins = with pkgs.vimPlugins; [
vim-just
vim-sleuth
vim-wakatime
];
extraLuaConfig = ''
vim.opt["tabstop"] = 4
vim.opt["shiftwidth"] = 4
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
vim.expandtab = true
'';
};
};

6
nixos/home/default.nix Normal file
View file

@ -0,0 +1,6 @@
{ ... }:
{
imports = [
./base.nix
];
}