From 0d5c3a0cc8e4cda2c3ed8f3404bb37402171e95c Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Fri, 29 Nov 2024 03:23:30 +0000 Subject: [PATCH] Add nix-index to base --- nixos/machines/wsl/configuration.nix | 10 ++++------ nixos/modules/base.nix | 8 ++++++++ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/nixos/machines/wsl/configuration.nix b/nixos/machines/wsl/configuration.nix index e1fa598..1566c59 100644 --- a/nixos/machines/wsl/configuration.nix +++ b/nixos/machines/wsl/configuration.nix @@ -46,12 +46,10 @@ "flakes" ]; - environment.systemPackages = with pkgs; [ - neovim - git - tmux - nixfmt-rfc-style - ]; + environment.systemPackages = + with pkgs; + [ + ]; # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions diff --git a/nixos/modules/base.nix b/nixos/modules/base.nix index e7b6533..2e0da99 100644 --- a/nixos/modules/base.nix +++ b/nixos/modules/base.nix @@ -16,5 +16,13 @@ "flakes" ]; + environment.systemPackages = with pkgs; [ + neovim + git + tmux + nixfmt-rfc-style + nix-index + ]; + system.stateVersion = "24.11"; }