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"; }