forked from nico/dots
chore: reorganise nix files into base dir
This commit is contained in:
parent
0fdd56c432
commit
104a0ccd4a
13 changed files with 2 additions and 2 deletions
44
modules/shell.nix
Normal file
44
modules/shell.nix
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
{ config, lib, pkgs, ...}:
|
||||
|
||||
{
|
||||
programs.zsh.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
git
|
||||
zoxide
|
||||
tmux
|
||||
tlrc
|
||||
file
|
||||
stow
|
||||
btop
|
||||
jq
|
||||
fzf
|
||||
killall
|
||||
ripgrep
|
||||
wget
|
||||
|
||||
ffmpeg
|
||||
imagemagick
|
||||
];
|
||||
|
||||
programs.nh = {
|
||||
enable = true;
|
||||
flake = "/home/nico/dots";
|
||||
};
|
||||
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
silent = true;
|
||||
loadInNixShell = true;
|
||||
nix-direnv.enable = true;
|
||||
};
|
||||
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
vimAlias = true;
|
||||
viAlias = true;
|
||||
withRuby = true;
|
||||
withPython3 = true;
|
||||
withNodeJs = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue