[minimal] create minimal_tools.nix

This commit is contained in:
2023-05-04 12:46:43 +02:00
parent bf107a1e2b
commit 76349e2a99
3 changed files with 13 additions and 9 deletions

View File

@@ -10,6 +10,7 @@ with lib;
imports = [
../modules/malobeo_user.nix
../modules/sshd.nix
../modules/minimal_tools.nix
];
}

View File

@@ -25,6 +25,7 @@
../modules/xserver.nix
../modules/malobeo_user.nix
../modules/sshd.nix
../modules/minimal_tools.nix
];
users.users.malobeo = {
@@ -55,15 +56,6 @@
sound.enable = true;
hardware.pulseaudio.enable = true;
environment.systemPackages = with pkgs; [
vim
htop
wget
git
pciutils
];
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;

11
modules/minimal_tools.nix Normal file
View File

@@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
vim
htop
wget
git
pciutils
];
}