about summary refs log tree commit diff
path: root/users/fcuny/common.nix
blob: ca5e4c8e261ee5f1e4beeb5aa3ed647c85123aae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ config, lib, pkgs, ... }:

{
  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 = [
    ./git.nix
    ./go.nix
  ];
}