blob: 9d2f194ec3ed4cf9a1833414069284baa8087a8b (
plain) (
tree)
|
|
{ config, lib, pkgs, ... }:
{
programs.home-manager.enable = true;
home.packages = [
pkgs.jq
pkgs.ripgrep
];
home.sessionVariables = {
LANG = "en_US.UTF-8";
LC_CTYPE = "en_US.UTF-8";
LC_ALL = "en_US.UTF-8";
EDITOR = "vim";
};
imports = [
../common/desktop
./git.nix
./go.nix
./tmux.nix
./zsh.nix
./desktop.nix
./pass.nix
];
}
|