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;
|
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||||
extraSpecialArgs = { inherit inputs; };
|
extraSpecialArgs = { inherit inputs; };
|
||||||
modules = [
|
modules = [
|
||||||
./home.nix
|
./home
|
||||||
(import ./overlays)
|
(import ./overlays)
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
@ -121,11 +121,14 @@
|
||||||
vimAlias = true;
|
vimAlias = true;
|
||||||
plugins = with pkgs.vimPlugins; [
|
plugins = with pkgs.vimPlugins; [
|
||||||
vim-just
|
vim-just
|
||||||
|
vim-sleuth
|
||||||
vim-wakatime
|
vim-wakatime
|
||||||
];
|
];
|
||||||
extraLuaConfig = ''
|
extraLuaConfig = ''
|
||||||
vim.opt["tabstop"] = 4
|
vim.opt.tabstop = 4
|
||||||
vim.opt["shiftwidth"] = 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