diff options
Diffstat (limited to '')
| -rw-r--r-- | hosts/station/hardware.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/hosts/station/hardware.nix b/hosts/station/hardware.nix new file mode 100644 index 0000000..8f84745 --- /dev/null +++ b/hosts/station/hardware.nix @@ -0,0 +1,11 @@ +{ config, pkgs, ... }: +{ + hardware = { + graphics = { + enable = true; + extraPackages = with pkgs; [ + rocmPackages.clr + ]; + }; + }; +} |
