adds rocm to gaming pc
This commit is contained in:
parent
f0620e24b1
commit
5b301b4da0
@ -7,10 +7,12 @@
|
||||
"org/gnome/desktop/interface".color-scheme = "prefer-dark";
|
||||
|
||||
# Pinned apps
|
||||
# add more by listing them with `gsettings list-recursively | grep favorite-apps`
|
||||
"org/gnome/shell" = {
|
||||
favorite-apps = [
|
||||
"io.github.zen_browser.zen.desktop"
|
||||
"code.desktop"
|
||||
"org.telegram.desktop.desktop"
|
||||
"spotify.desktop"
|
||||
"vesktop.desktop"
|
||||
"kitty.desktop"
|
||||
|
@ -48,7 +48,10 @@
|
||||
services.xserver.displayManager.gdm.enable = true;
|
||||
services.xserver.desktopManager.gnome.enable = true;
|
||||
|
||||
environment.systemPackages = [ pkgs.tailscale ];
|
||||
environment.systemPackages = [
|
||||
pkgs.tailscale
|
||||
pkgs.pciutils
|
||||
];
|
||||
services.tailscale.enable = true;
|
||||
|
||||
# Configure keymap in X11
|
||||
|
@ -54,6 +54,15 @@
|
||||
];
|
||||
};
|
||||
|
||||
# Add ROCm packages
|
||||
environment.systemPackages = with pkgs; [
|
||||
rocm-smi # GPU monitoring tool
|
||||
rocmPackages.clr # OpenCL Runtime
|
||||
rocmPackages.rocm-core
|
||||
rocmPackages.hip # HIP runtime and compiler
|
||||
rocmPackages.rocm-device-libs
|
||||
];
|
||||
|
||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||
# (the default) this is the recommended approach. When using systemd-networkd it's
|
||||
# still possible to use this option, but it's recommended to use it in conjunction
|
||||
|
@ -1,14 +1,17 @@
|
||||
{ config, pkgs, ... }: {
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
users.users.menno = {
|
||||
isNormalUser = true;
|
||||
description = "Menno van Leeuwen";
|
||||
extraGroups = [
|
||||
"networkmanager"
|
||||
"wheel"
|
||||
"kvm"
|
||||
extraGroups = [
|
||||
"networkmanager"
|
||||
"wheel"
|
||||
"kvm"
|
||||
"libvirtd"
|
||||
"qemu-libvirtd"
|
||||
"docker"
|
||||
"video"
|
||||
"render"
|
||||
];
|
||||
packages = with pkgs; [ ];
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user