mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-03-03 19:32:09 +00:00
~
This commit is contained in:
parent
96a94cedbd
commit
12bffc5102
3 changed files with 12 additions and 3 deletions
|
@ -35,7 +35,7 @@
|
|||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||
extraSpecialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
./home.nix
|
||||
./home
|
||||
(import ./overlays)
|
||||
];
|
||||
};
|
||||
|
|
|
@ -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
6
nixos/home/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./base.nix
|
||||
];
|
||||
}
|
Loading…
Add table
Reference in a new issue