mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
41d289c5db
preparing for light mode, even though specializations aren't working
20 lines
340 B
Nix
20 lines
340 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
imports = [ ./. ];
|
|
|
|
config = {
|
|
hardware.steam-hardware.enable = true;
|
|
unfreePackages = [ "steam" "steam-original" "steamcmd" "steam-run" ];
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
steam
|
|
|
|
# Enable terminal interaction
|
|
steamPackages.steamcmd
|
|
steam-tui
|
|
|
|
];
|
|
};
|
|
|
|
}
|