diff options
| author | Franck Cuny <franck@fcuny.net> | 2022-02-10 19:28:54 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2022-02-10 19:28:54 -0800 |
| commit | 3c6a829a0628ecfff288d8c939a3e8d64fc51b61 (patch) | |
| tree | 23939a27cd1ad9caf24b9de5d4e9a72ba9f988a5 /users/fcuny/default.nix | |
| parent | hosts: set hostname from configuration (diff) | |
| download | infra-3c6a829a0628ecfff288d8c939a3e8d64fc51b61.tar.gz | |
users: rename common.nix to default.nix
We will use the variable 'destkop' to decide what to install after that.
Diffstat (limited to 'users/fcuny/default.nix')
| -rw-r--r-- | users/fcuny/default.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/users/fcuny/default.nix b/users/fcuny/default.nix new file mode 100644 index 0000000..21413e0 --- /dev/null +++ b/users/fcuny/default.nix @@ -0,0 +1,25 @@ +{ 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 = [ + ./git.nix + ./go.nix + ./tmux.nix + ./zsh.nix + ]; +} |
