rearrange files

This commit is contained in:
Katherina Walshe-Grey 2024-07-18 23:22:35 +01:00
parent a2f250287d
commit b96ef23c6c
8 changed files with 12 additions and 7 deletions

7
services/fonts.nix Normal file
View file

@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
{
fonts.packages = with pkgs; [
corefonts
];
}

11
services/steam.nix Normal file
View file

@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
{
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
};
services.joycond.enable = true;
}