add nixos-install-tools to base nixos

This commit is contained in:
Ivan Kirilov Dimitrov 2024-08-03 12:54:52 +02:00
parent ab4d05ae3c
commit e3eb263108
No known key found for this signature in database
GPG Key ID: 0BDAD4B211C49294

View File

@ -19,7 +19,7 @@ top@{ inputs, moduleWithSystem, ... }: {
i18n.supportedLocales = [ "all" ];
time.timeZone = "Europe/Prague";
environment = {
systemPackages = with pkgs; [ cmatrix uutils-coreutils-noprefix cryptsetup fd file git glibc gnumake mlocate openssh openssl procs ripgrep srm unzip vim zip just ];
systemPackages = with pkgs; [ cmatrix uutils-coreutils-noprefix cryptsetup fd file git glibc gnumake mlocate openssh openssl procs ripgrep srm unzip vim zip just nixos-install-tools ];
sessionVariables = { MAKEFLAGS = "-j 4"; };
shells = with pkgs; [ bash zsh nushell ];
};