dotfiles/home-manager/wsl2.nix

19 lines
246 B
Nix
Raw Normal View History

2022-09-27 06:37:57 +00:00
{ config, lib, pkgs, ... }:
{
imports = [
./modules/git.nix
./modules/home-manager.nix
./modules/tmux.nix
./modules/zsh.nix
];
home.packages = with pkgs; [
just
neovim
zsh
];
programs.bat.enable = true;
}