refactor: remove redundant aliases, comments, and fix lazygit pager config

This commit is contained in:
2026-04-14 13:53:04 +08:00
parent 5583970878
commit f6e2f92da3
6 changed files with 4 additions and 22 deletions
-4
View File
@@ -10,21 +10,18 @@
./docker.nix
];
# ── System-essential packages ──────────────────────
environment.systemPackages = with pkgs; [
curl
git
ghostty.terminfo
];
# ── Locale / Timezone ──────────────────────────────
i18n = {
defaultLocale = "en_US.UTF-8";
supportedLocales = [ "en_US.UTF-8/UTF-8" ];
};
time.timeZone = "Asia/Shanghai";
# ── Default user ───────────────────────────────────
users.users.${username} = {
isNormalUser = true;
shell = pkgs.fish;
@@ -32,6 +29,5 @@
openssh.authorizedKeys.keys = sshKeys;
};
# ── sudo ───────────────────────────────────────────
security.sudo.wheelNeedsPassword = false;
}