This commit is contained in:
Sense T 2023-10-27 14:11:06 +08:00
parent 8a9592de74
commit 3d1a4f6a19
3 changed files with 13 additions and 9 deletions

View File

@ -25,11 +25,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1696737557, "lastModified": 1698250431,
"narHash": "sha256-YD/pjDjj/BNmisEvRdM/vspkCU3xyyeGVAUWhvVSi5Y=", "narHash": "sha256-qs2gTeH4wpnWPO6Oi6sOhp2IhG0i0DzcnrJxIY3/CP8=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "3c1d8758ac3f55ab96dcaf4d271c39da4b6e836d", "rev": "09587fbbc6a669f7725613e044c2577dc5d43ab5",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -63,11 +63,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1696604326, "lastModified": 1698134075,
"narHash": "sha256-YXUNI0kLEcI5g8lqGMb0nh67fY9f2YoJsILafh6zlMo=", "narHash": "sha256-foCD+nuKzfh49bIoiCBur4+Fx1nozo+4C/6k8BYk4sg=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "87828a0e03d1418e848d3dd3f3014a632e4a4f64", "rev": "8efd5d1e283604f75a808a20e6cde0ef313d07d4",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -25,6 +25,11 @@
proxychains-ng proxychains-ng
nil nil
coreutils coreutils
# temp develop pkgs below
virtualenv
python39
rustup
]; ];
# Home Manager is pretty good at managing dotfiles. The primary way to manage # Home Manager is pretty good at managing dotfiles. The primary way to manage
@ -46,8 +51,6 @@
# #
# if you don't want to manage your shell through Home Manager. # if you don't want to manage your shell through Home Manager.
home.sessionVariables = { home.sessionVariables = {
# EDITOR = "emacs";
TZ = "Asia/Shanghai";
LANG = "zh_CN.UTF-8"; LANG = "zh_CN.UTF-8";
GOPROXY = "https://goproxy.cn,direct"; GOPROXY = "https://goproxy.cn,direct";
PKG_CONFIG_PATH = "$HOME/.nix-profile/lib/pkgconfig"; PKG_CONFIG_PATH = "$HOME/.nix-profile/lib/pkgconfig";

View File

@ -1,5 +1,6 @@
{ pkgs, ... }: { { pkgs, ... }: {
programs = { programs = {
command-not-found.enable = true;
home-manager.enable = true; home-manager.enable = true;
bat = { bat = {
@ -48,7 +49,7 @@
}; };
go = { go = {
enable = false; enable = true;
goPath = ".local/go"; goPath = ".local/go";
}; };