From dc1bc1d9adaeb1094a2929f9b3cc67243623161c Mon Sep 17 00:00:00 2001 From: Aloys23 Date: Fri, 29 May 2026 22:32:27 +0800 Subject: [PATCH] feat: add steam, docker, tailscale, gnome-keyring; move neovim to home.packages --- configuration.nix | 5 ++++- home.nix | 10 ++++------ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/configuration.nix b/configuration.nix index c7bd336..1f99bae 100644 --- a/configuration.nix +++ b/configuration.nix @@ -151,9 +151,12 @@ # Install firefox. programs.firefox.enable = true; + programs.steam.enable = true; + virtualisation.docker.enable = true; + services.tailscale.enable = true; + services.gnome.gnome-keyring.enable = true; # Allow unfree packages nixpkgs.config.allowUnfree = true; - # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ diff --git a/home.nix b/home.nix index 5daf800..239f487 100644 --- a/home.nix +++ b/home.nix @@ -11,6 +11,10 @@ fastfetch jetbrains-toolbox google-chrome + neovim + telegram-desktop + htop + btop ]; # 用 Home Manager 固定 Fcitx5 输入法配置,仅保留拼音 @@ -56,12 +60,6 @@ }; }; - programs.neovim = { - enable = true; - withRuby = false; - withPython3 = false; - }; - # 这个版本号不要改!它不是软件版本,而是系统状态标识 home.stateVersion = "25.11";