diff options
Diffstat (limited to 'hosts/workstation/default.nix')
| -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"; |