mirror of
https://github.com/caperren/nixos-configs.git
synced 2025-12-30 19:14:19 +00:00
Add cluster host definitions, cluster utilities, and admin, switch nixpkgs to stable
This commit is contained in:
26
modules/application-groups/system-utilities-cluster.nix
Normal file
26
modules/application-groups/system-utilities-cluster.nix
Normal file
@@ -0,0 +1,26 @@
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
|
||||
services.glances.enable = true;
|
||||
services.openssh.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
btop
|
||||
dnsutils
|
||||
git
|
||||
htop
|
||||
iftop
|
||||
iotop
|
||||
killall
|
||||
kitty
|
||||
ncdu
|
||||
networkmanager
|
||||
nmap
|
||||
nvtopPackages.full
|
||||
pciutils
|
||||
unzip
|
||||
usbutils
|
||||
util-linux
|
||||
wget
|
||||
];
|
||||
}
|
||||
@@ -1,5 +1,11 @@
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
services.xserver.videoDrivers = [ "amdgpu" ];
|
||||
hardware.graphics = {
|
||||
enable = true;
|
||||
enable32Bit = true;
|
||||
};
|
||||
|
||||
nixpkgs.config.rocmSupport = true;
|
||||
|
||||
services.xserver.videoDrivers = [ "amdgpu" ];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user