mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-25 10:15:37 +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 ];
|
|
};
|
|
|
|
}
|