mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-23 09:15:38 +00:00
11 lines
176 B
Nix
11 lines
176 B
Nix
|
{ config, pkgs, ... }: {
|
||
|
|
||
|
imports = [ ./common.nix ];
|
||
|
|
||
|
config = {
|
||
|
hardware.steam-hardware.enable = true;
|
||
|
environment.systemPackages = with pkgs; [ steam ];
|
||
|
};
|
||
|
|
||
|
}
|