2023-04-22 17:42:40 +00:00
|
|
|
|
{ config, pkgs, ... }:
|
2023-03-29 13:14:37 +00:00
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports =
|
|
|
|
|
[
|
|
|
|
|
# Include the results of the hardware scan.
|
|
|
|
|
./hardware-configuration.nix
|
2023-04-22 17:42:40 +00:00
|
|
|
|
./network.nix
|
2023-04-19 06:16:39 +00:00
|
|
|
|
../sops.nix
|
2023-04-22 17:42:40 +00:00
|
|
|
|
../clash.nix
|
2023-03-29 13:14:37 +00:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
# Bootloader.
|
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
|
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
|
|
|
|
# boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
|
|
|
boot.kernelModules = [ "nvidia" "nvidia_modeset" "nvidia_uvm" ];
|
2023-04-22 17:42:40 +00:00
|
|
|
|
boot.supportedFilesystems = [ "ntfs" ];
|
2023-03-29 13:14:37 +00:00
|
|
|
|
|
2023-04-22 17:42:40 +00:00
|
|
|
|
networking.hostName = "calcite";
|
2023-03-29 13:14:37 +00:00
|
|
|
|
|
2023-04-22 17:42:40 +00:00
|
|
|
|
programs.vim.defaultEditor = true;
|
2023-03-29 13:14:37 +00:00
|
|
|
|
|
2023-04-22 17:42:40 +00:00
|
|
|
|
# Keep this even if enabled in home manager
|
|
|
|
|
programs.fish.enable = true;
|
|
|
|
|
environment.shells = [ pkgs.fish ];
|
|
|
|
|
users.defaultUserShell = pkgs.fish;
|
2023-04-19 06:16:39 +00:00
|
|
|
|
|
2023-03-29 13:14:37 +00:00
|
|
|
|
# Setup wireguard
|
|
|
|
|
# Set your time zone.
|
|
|
|
|
time.timeZone = "Asia/Shanghai";
|
|
|
|
|
|
|
|
|
|
# Select internationalisation properties.
|
|
|
|
|
i18n.defaultLocale = "en_US.utf8";
|
|
|
|
|
|
|
|
|
|
i18n.extraLocaleSettings = {
|
|
|
|
|
LC_ADDRESS = "zh_CN.utf8";
|
|
|
|
|
LC_IDENTIFICATION = "zh_CN.utf8";
|
|
|
|
|
LC_MEASUREMENT = "zh_CN.utf8";
|
|
|
|
|
LC_MONETARY = "zh_CN.utf8";
|
|
|
|
|
LC_NAME = "zh_CN.utf8";
|
|
|
|
|
LC_NUMERIC = "zh_CN.utf8";
|
|
|
|
|
LC_PAPER = "zh_CN.utf8";
|
|
|
|
|
LC_TELEPHONE = "zh_CN.utf8";
|
|
|
|
|
LC_TIME = "en_US.utf8";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Enable the X11 windowing system.
|
|
|
|
|
services.xserver.enable = true;
|
|
|
|
|
|
|
|
|
|
# Enable the GNOME Desktop Environment.
|
|
|
|
|
services.xserver.displayManager.gdm.enable = true;
|
|
|
|
|
services.xserver.desktopManager.gnome.enable = true;
|
|
|
|
|
|
|
|
|
|
# Configure keymap in X11
|
|
|
|
|
services.xserver = {
|
|
|
|
|
layout = "us";
|
|
|
|
|
xkbVariant = "";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Enable CUPS to print documents.
|
|
|
|
|
services.printing.enable = true;
|
|
|
|
|
services.printing.drivers = [ pkgs.hplip ];
|
|
|
|
|
|
|
|
|
|
# Enable sound with pipewire.
|
|
|
|
|
sound.enable = true;
|
|
|
|
|
hardware.pulseaudio.enable = false;
|
|
|
|
|
security.rtkit.enable = true;
|
|
|
|
|
services.pipewire = {
|
|
|
|
|
enable = true;
|
|
|
|
|
wireplumber.enable = true;
|
|
|
|
|
alsa.enable = true;
|
|
|
|
|
#alsa.support32Bit = true;
|
|
|
|
|
pulse.enable = true;
|
|
|
|
|
# If you want to use JACK applications, uncomment this
|
|
|
|
|
jack.enable = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
|
|
|
|
users.users.xin = {
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
description = "xin";
|
|
|
|
|
extraGroups = [ "networkmanager" "wheel" "wireshark" ];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Enable automatic login for the user.
|
|
|
|
|
services.xserver.displayManager.autoLogin.enable = true;
|
|
|
|
|
services.xserver.displayManager.autoLogin.user = "xin";
|
|
|
|
|
|
|
|
|
|
# Workaround for GNOME autologin: https://github.com/NixOS/nixpkgs/issues/103746#issuecomment-945091229
|
|
|
|
|
systemd.services."getty@tty1".enable = false;
|
|
|
|
|
systemd.services."autovt@tty1".enable = false;
|
|
|
|
|
|
|
|
|
|
# Allow unfree packages
|
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
2023-04-22 17:42:40 +00:00
|
|
|
|
nixpkgs.config.permittedInsecurePackages = [
|
|
|
|
|
# For wechat-uos
|
|
|
|
|
"electron-19.0.7"
|
|
|
|
|
];
|
2023-03-29 13:14:37 +00:00
|
|
|
|
# List packages installed in system profile. To search, run:
|
|
|
|
|
# $ nix search wget
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
|
# Filesystem
|
|
|
|
|
nfs-utils
|
|
|
|
|
|
|
|
|
|
winetricks
|
|
|
|
|
wineWowPackages.waylandFull
|
|
|
|
|
faudio
|
|
|
|
|
|
|
|
|
|
# ==== CLI tools ==== #
|
|
|
|
|
rust-analyzer
|
2023-04-22 17:42:40 +00:00
|
|
|
|
|
2023-03-29 13:14:37 +00:00
|
|
|
|
# tesseract5 # ocr
|
2023-04-03 02:01:42 +00:00
|
|
|
|
ocrmypdf # pdfocr
|
2023-03-29 13:14:37 +00:00
|
|
|
|
|
|
|
|
|
grc
|
|
|
|
|
|
|
|
|
|
# ==== Development ==== #
|
|
|
|
|
# VCS
|
2023-04-03 07:33:15 +00:00
|
|
|
|
git-crypt
|
2023-04-03 09:41:33 +00:00
|
|
|
|
|
2023-03-29 13:14:37 +00:00
|
|
|
|
jetbrains.jdk # patch jetbrain runtime java
|
2023-04-03 02:01:42 +00:00
|
|
|
|
jetbrains.clion
|
2023-03-29 13:14:37 +00:00
|
|
|
|
jetbrains.pycharm-professional
|
|
|
|
|
jetbrains.idea-ultimate
|
|
|
|
|
android-studio
|
|
|
|
|
|
|
|
|
|
# Language server
|
|
|
|
|
clang-tools
|
|
|
|
|
rnix-lsp
|
|
|
|
|
|
|
|
|
|
# C/C++
|
|
|
|
|
gcc
|
|
|
|
|
gdb
|
|
|
|
|
|
|
|
|
|
# Python
|
|
|
|
|
# reference: https://nixos.wiki/wiki/Python
|
|
|
|
|
(
|
|
|
|
|
let
|
|
|
|
|
my-python-packages = python-packages: with python-packages; [
|
|
|
|
|
pandas
|
|
|
|
|
requests
|
|
|
|
|
numpy
|
|
|
|
|
pyyaml
|
|
|
|
|
];
|
|
|
|
|
python-with-my-packages = python3.withPackages my-python-packages;
|
|
|
|
|
in
|
|
|
|
|
python-with-my-packages
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# Tex
|
|
|
|
|
texlive.combined.scheme-full
|
|
|
|
|
|
|
|
|
|
# ==== GUI Softwares ==== #
|
|
|
|
|
# Gnome tweaks
|
|
|
|
|
gnomeExtensions.dash-to-dock
|
|
|
|
|
gnomeExtensions.hide-top-bar
|
|
|
|
|
gnomeExtensions.tray-icons-reloaded
|
|
|
|
|
gnome.gnome-tweaks
|
|
|
|
|
gthumb
|
|
|
|
|
|
|
|
|
|
steam
|
|
|
|
|
|
|
|
|
|
# Multimedia
|
|
|
|
|
vlc
|
|
|
|
|
obs-studio
|
|
|
|
|
spotify
|
|
|
|
|
|
|
|
|
|
digikam
|
|
|
|
|
|
|
|
|
|
# IM
|
|
|
|
|
tdesktop
|
|
|
|
|
qq
|
2023-04-22 17:42:40 +00:00
|
|
|
|
config.nur.repos.xddxdd.wechat-uos
|
2023-03-29 13:14:37 +00:00
|
|
|
|
|
|
|
|
|
# Mail
|
|
|
|
|
thunderbird
|
|
|
|
|
|
|
|
|
|
# Password manager
|
|
|
|
|
keepassxc
|
|
|
|
|
|
|
|
|
|
# Browser
|
|
|
|
|
firefox
|
|
|
|
|
chromium
|
|
|
|
|
microsoft-edge
|
|
|
|
|
|
|
|
|
|
# Writting
|
|
|
|
|
obsidian
|
|
|
|
|
zotero
|
|
|
|
|
wpsoffice
|
|
|
|
|
|
|
|
|
|
config.nur.repos.linyinfeng.wemeet
|
|
|
|
|
|
|
|
|
|
virt-manager
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
programs.steam = {
|
|
|
|
|
enable = true;
|
|
|
|
|
};
|
2023-04-22 17:42:40 +00:00
|
|
|
|
|
|
|
|
|
system.stateVersion = "22.05";
|
2023-03-29 13:14:37 +00:00
|
|
|
|
|
|
|
|
|
# Use mirror for binary cache
|
|
|
|
|
nix.settings.substituters = [
|
|
|
|
|
"https://mirrors.ustc.edu.cn/nix-channels/store"
|
2023-04-22 17:42:40 +00:00
|
|
|
|
"https://mirrors.tuna.tsinghua.edu.cn/nix-channels/store"
|
2023-03-29 13:14:37 +00:00
|
|
|
|
];
|
|
|
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
|
|
|
|
|
|
|
|
# MTP support
|
|
|
|
|
services.gvfs.enable = true;
|
|
|
|
|
|
|
|
|
|
# Fonts
|
|
|
|
|
fonts = {
|
|
|
|
|
fonts = with pkgs; [
|
2023-04-22 17:42:40 +00:00
|
|
|
|
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
2023-03-29 13:14:37 +00:00
|
|
|
|
noto-fonts
|
|
|
|
|
noto-fonts-emoji
|
|
|
|
|
liberation_ttf
|
|
|
|
|
mplus-outline-fonts.githubRelease
|
|
|
|
|
dina-font
|
|
|
|
|
proggyfonts
|
|
|
|
|
ubuntu_font_family
|
|
|
|
|
# Chinese
|
|
|
|
|
wqy_microhei
|
|
|
|
|
wqy_zenhei
|
|
|
|
|
noto-fonts-cjk-sans
|
|
|
|
|
noto-fonts-cjk-serif
|
|
|
|
|
source-han-sans
|
|
|
|
|
source-han-serif
|
|
|
|
|
];
|
|
|
|
|
fontconfig = {
|
|
|
|
|
defaultFonts = {
|
|
|
|
|
serif = [ "Noto Serif CJK SC" "Ubuntu" ];
|
|
|
|
|
sansSerif = [ "Noto Sans CJK SC" "Ubuntu" ];
|
2023-04-22 17:42:40 +00:00
|
|
|
|
monospace = [ "FiraCode NerdFont Mono" "Ubuntu" ];
|
2023-03-29 13:14:37 +00:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
# Virtualization
|
|
|
|
|
virtualisation = {
|
|
|
|
|
libvirtd.enable = true;
|
|
|
|
|
podman = {
|
|
|
|
|
enable = true;
|
|
|
|
|
enableNvidia = true;
|
|
|
|
|
};
|
2023-04-16 02:30:45 +00:00
|
|
|
|
docker = {
|
|
|
|
|
enable = true;
|
|
|
|
|
enableNvidia = true;
|
|
|
|
|
autoPrune.enable = true;
|
|
|
|
|
};
|
2023-03-29 13:14:37 +00:00
|
|
|
|
};
|
|
|
|
|
}
|