modified: .sops.yaml
modified: flake.nix modified: home/git.nix modified: home/nvchad.nix modified: home/ssh.nix modified: home/zsh.nix new file: hosts/virtualbox/README.md new file: hosts/virtualbox/configuration.nix new file: hosts/virtualbox/default.nix new file: hosts/virtualbox/hardware-configuration.nix modified: lib/hosts.nix modified: modules/core/README.md new file: modules/core/core.nix modified: modules/core/default.nix new file: modules/core/pkg.nix modified: modules/core/sops.nix modified: modules/desktop/README.md modified: modules/desktop/apps.nix modified: modules/desktop/default.nix new file: modules/desktop/fcitx5.nix new file: modules/desktop/pkg.nix modified: modules/server/README.md modified: modules/server/default.nix modified: modules/server/docker.nix new file: modules/server/pkg.nix modified: modules/server/ssh.nix new file: modules/server/virtualbox-guest.nix new file: modules/server/vscode-server.nix modified: modules/wsl/configuration.nix new file: profiles/virtualbox.nix modified: profiles/wsl.nix modified: secrets/users/README.md modified: secrets/users/luochen570.enc.yaml.example
This commit is contained in:
@@ -6,8 +6,8 @@
|
||||
user = {
|
||||
name = "luochen570";
|
||||
email = "1160510664@qq.com";
|
||||
};
|
||||
init.defaultBranch = "main";
|
||||
};
|
||||
};
|
||||
init.defaultBranch = "main";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,29 +1,29 @@
|
||||
{ config, pkgs, inputs, system, ... }:
|
||||
{
|
||||
# 导入 NvChad 模块
|
||||
imports = [
|
||||
inputs.nix4nvchad.homeManagerModules.default
|
||||
];
|
||||
|
||||
programs.nvchad = {
|
||||
enable = true;
|
||||
|
||||
# 可选:添加你需要的语言服务器和工具
|
||||
extraPackages = with pkgs; [
|
||||
# LSP 服务器
|
||||
nil # Nix LSP
|
||||
nixd # Nix 语言服务器(另一种选择)
|
||||
marksman # Markdown LSP
|
||||
|
||||
# 格式化工具
|
||||
nixpkgs-fmt
|
||||
shfmt
|
||||
];
|
||||
};
|
||||
|
||||
# 设置默认编辑器
|
||||
home.sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
VISUAL = "nvim";
|
||||
};
|
||||
{ config, pkgs, inputs, system, ... }:
|
||||
{
|
||||
# 导入 NvChad 模块
|
||||
imports = [
|
||||
inputs.nix4nvchad.homeManagerModules.default
|
||||
];
|
||||
|
||||
programs.nvchad = {
|
||||
enable = true;
|
||||
|
||||
# 可选:添加你需要的语言服务器和工具
|
||||
extraPackages = with pkgs; [
|
||||
# LSP 服务器
|
||||
nil # Nix LSP
|
||||
nixd # Nix 语言服务器(另一种选择)
|
||||
marksman # Markdown LSP
|
||||
|
||||
# 格式化工具
|
||||
nixpkgs-fmt
|
||||
shfmt
|
||||
];
|
||||
};
|
||||
|
||||
# 设置默认编辑器
|
||||
home.sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
VISUAL = "nvim";
|
||||
};
|
||||
}
|
||||
@@ -2,6 +2,10 @@
|
||||
{
|
||||
programs.ssh.enable = true;
|
||||
|
||||
# ~/.ssh/id_rsa comes from a sops secret file.
|
||||
home.file.".ssh/id_rsa".source =
|
||||
config.lib.file.mkOutOfStoreSymlink "/run/secrets/users/luochen570/ssh_private_key";
|
||||
|
||||
# ~/.ssh/config comes from a sops secret file.
|
||||
home.file.".ssh/config".source =
|
||||
config.lib.file.mkOutOfStoreSymlink "/run/secrets/users/luochen570/ssh_config";
|
||||
|
||||
120
home/zsh.nix
120
home/zsh.nix
@@ -1,61 +1,61 @@
|
||||
{ config, pkgs, inputs, system, ... }:
|
||||
{ programs.zsh = {
|
||||
enable = true;
|
||||
enableCompletion = true;
|
||||
autosuggestion.enable = true;
|
||||
syntaxHighlighting.enable = true;
|
||||
# initContent = "source ~/.p10k.zsh";
|
||||
plugins = [
|
||||
{
|
||||
name = "powerlevel10k";
|
||||
src = pkgs.zsh-powerlevel10k;
|
||||
file = "share/zsh-powerlevel10k/powerlevel10k.zsh-theme";
|
||||
}
|
||||
{
|
||||
name = "fzf-tab";
|
||||
src = "${pkgs.zsh-fzf-tab}/share/fzf-tab";
|
||||
}
|
||||
# {
|
||||
# name = "powerlevel10k-config";
|
||||
# src = "/home/luochen570/nixos-config/modules/home/p10k/";
|
||||
# file = "p10k.zsh";
|
||||
# }
|
||||
];
|
||||
# 设置alias
|
||||
shellAliases = {
|
||||
# Git相关
|
||||
gc1 = "git clone --recursive --depth=1";
|
||||
|
||||
# 目录操作
|
||||
md = "mkdir -p";
|
||||
"..." = "../..";
|
||||
"...." = "../../..";
|
||||
"....." = "../../../..";
|
||||
"......" = "../../../../..";
|
||||
|
||||
# eza/ls替代
|
||||
ls = "eza --color=auto";
|
||||
l = "eza -lbah --icons=auto";
|
||||
la = "eza -labgh --icons=auto";
|
||||
ll = "eza -lbg --icons=auto";
|
||||
lt = "eza -lTbg --icons=auto";
|
||||
lsa = "eza -lbagR --icons=auto";
|
||||
lst = "eza -lTabgh --icons=auto";
|
||||
|
||||
# bat/cat替代
|
||||
cat = "bat -pp";
|
||||
ccat = "cat";
|
||||
};
|
||||
|
||||
oh-my-zsh = {
|
||||
enable = true;
|
||||
plugins = [
|
||||
"sudo"
|
||||
"z"
|
||||
"extract"
|
||||
"git"
|
||||
# "fzf-tab"
|
||||
];
|
||||
};
|
||||
};
|
||||
{ config, pkgs, inputs, system, ... }:
|
||||
{ programs.zsh = {
|
||||
enable = true;
|
||||
enableCompletion = true;
|
||||
autosuggestion.enable = true;
|
||||
syntaxHighlighting.enable = true;
|
||||
# initContent = "source ~/.p10k.zsh";
|
||||
plugins = [
|
||||
{
|
||||
name = "powerlevel10k";
|
||||
src = pkgs.zsh-powerlevel10k;
|
||||
file = "share/zsh-powerlevel10k/powerlevel10k.zsh-theme";
|
||||
}
|
||||
{
|
||||
name = "fzf-tab";
|
||||
src = "${pkgs.zsh-fzf-tab}/share/fzf-tab";
|
||||
}
|
||||
# {
|
||||
# name = "powerlevel10k-config";
|
||||
# src = "/home/luochen570/nixos-config/modules/home/p10k/";
|
||||
# file = "p10k.zsh";
|
||||
# }
|
||||
];
|
||||
# 设置alias
|
||||
shellAliases = {
|
||||
# Git相关
|
||||
gc1 = "git clone --recursive --depth=1";
|
||||
|
||||
# 目录操作
|
||||
md = "mkdir -p";
|
||||
"..." = "../..";
|
||||
"...." = "../../..";
|
||||
"....." = "../../../..";
|
||||
"......" = "../../../../..";
|
||||
|
||||
# eza/ls替代
|
||||
ls = "eza --color=auto";
|
||||
l = "eza -lbah --icons=auto";
|
||||
la = "eza -labgh --icons=auto";
|
||||
ll = "eza -lbg --icons=auto";
|
||||
lt = "eza -lTbg --icons=auto";
|
||||
lsa = "eza -lbagR --icons=auto";
|
||||
lst = "eza -lTabgh --icons=auto";
|
||||
|
||||
# bat/cat替代
|
||||
cat = "bat -pp";
|
||||
ccat = "cat";
|
||||
};
|
||||
|
||||
oh-my-zsh = {
|
||||
enable = true;
|
||||
plugins = [
|
||||
"sudo"
|
||||
"z"
|
||||
"extract"
|
||||
"git"
|
||||
# "fzf-tab"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user