diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-25 21:54:10 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-25 21:54:10 +0200 |
| commit | dc00b9a7b38de0b8f402e944ea994883141a601e (patch) | |
| tree | 70ce669d253331ff04f8db331d77c946cd90bd81 /hosts/workstation | |
| parent | 8f02589b784f2130ec248fbcfdb24039cd728503 (diff) | |
update packages
Diffstat (limited to 'hosts/workstation')
| -rw-r--r-- | hosts/workstation/default.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hosts/workstation/default.nix b/hosts/workstation/default.nix index 16d1943..acae824 100644 --- a/hosts/workstation/default.nix +++ b/hosts/workstation/default.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ pkgs, nixpkgs, ... }: { imports = [ ./hardware.nix @@ -6,6 +6,8 @@ ../../modules/usbauth/default.nix ]; + nixpkgs.config.rocmSupport = true; + networking.hostName = "workstation"; boot.loader = { @@ -78,6 +80,8 @@ ]; }; + systemd.tmpfiles.rules = [ "L+ /opt/rocm/hip - - - - ${pkgs.rocmPackages.clr}" ]; + environment.systemPackages = with pkgs; [ clinfo ]; system.stateVersion = "24.05"; |