This repository has been archived on 2024-01-17. You can view files and clone it, but cannot push or open issues or pull requests.
code-server-configurations/home.nix

85 lines
2.0 KiB
Nix
Raw Normal View History

2023-09-28 05:36:53 +00:00
{ pkgs, ... }:
2023-07-04 09:31:01 +00:00
{
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = "coder";
home.homeDirectory = "/home/coder";
# This value determines the Home Manager release that your configuration is
# compatible with. This helps avoid breakage when a new Home Manager release
# introduces backwards incompatible changes.
#
# You should not change this value, even if you update Home Manager. If you do
# want to update the value, then make sure to first check the Home Manager
# release notes.
home.stateVersion = "22.11"; # Please read the comment before changing.
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = with pkgs; [
2023-09-28 05:36:53 +00:00
openssl.dev
pkg-config
2023-07-04 09:31:01 +00:00
direnv
procps
bat
icdiff
2023-07-04 10:12:49 +00:00
thefuck
kubectl
kubernetes-helm
krew
yarn
python39
rustup
nodejs_20
virtualenv
2023-07-04 10:23:34 +00:00
proxychains-ng
2023-07-04 10:50:31 +00:00
less
2023-07-04 11:01:16 +00:00
openssh
2023-08-30 00:32:56 +00:00
openssl
2023-09-28 05:36:53 +00:00
nil
2023-07-07 02:42:26 +00:00
qemu
2023-07-07 05:04:37 +00:00
gcc9
2023-07-04 09:31:01 +00:00
];
# Home Manager is pretty good at managing dotfiles. The primary way to manage
# plain files is through 'home.file'.
2023-07-07 02:42:26 +00:00
home.file = {
".cargo/config".source = ./config/cargo-config;
2023-07-07 06:05:49 +00:00
".profile".source = ./config/profile;
".bashrc".text = "source .profile";
2023-07-07 02:42:26 +00:00
};
2023-07-04 09:31:01 +00:00
# You can also manage environment variables but you will have to manually
# source
#
# ~/.nix-profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# /etc/profiles/per-user/coder/etc/profile.d/hm-session-vars.sh
#
# if you don't want to manage your shell through Home Manager.
home.sessionVariables = {
# EDITOR = "emacs";
2023-07-05 05:47:13 +00:00
TZ = "Asia/Shanghai";
2023-07-04 09:31:01 +00:00
LANG = "zh_CN.UTF-8";
GOPROXY = "https://goproxy.cn,direct";
};
home.sessionPath = [
2023-07-07 05:04:37 +00:00
"$HOME/.local/bin"
"$HOME/.cargo/bin"
2023-07-04 09:31:01 +00:00
];
home.shellAliases = {
cao = "fuck";
ls = "ls --color=auto";
cat = "bat -p --paging=never -u";
diff = "icdiff";
};
# Let Home Manager install and manage itself.
2023-07-04 10:41:54 +00:00
programs.home-manager.enable = true;
2023-09-28 05:36:53 +00:00
targets.genericLinux.enable = true;
2023-07-04 09:31:01 +00:00
}