moved gaming configuration to /sys module, added a bunch of neovim plugins
This commit is contained in:
7
modules/sys/software/gaming/default.nix
Normal file
7
modules/sys/software/gaming/default.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[(import ./steam.nix)]
|
||||
++ [(import ./gaming_pkgs.nix)];
|
||||
}
|
||||
7
modules/sys/software/gaming/gaming_pkgs.nix
Normal file
7
modules/sys/software/gaming/gaming_pkgs.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
snes9x-gtk
|
||||
];
|
||||
}
|
||||
6
modules/sys/software/gaming/steam.nix
Normal file
6
modules/sys/software/gaming/steam.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{...}: {
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
remotePlay.openFirewall = true;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user