moved gaming configuration to /sys module, added a bunch of neovim plugins

This commit is contained in:
pagedmov
2024-10-20 15:48:30 -04:00
parent 50fa171e6c
commit 0cfcd2e414
15 changed files with 67 additions and 30 deletions

View File

@@ -14,11 +14,11 @@
gtk = {
enable = true;
cursorTheme = {
name = "Bibata-Modern-Ice";
package = pkgs.bibata-cursors;
size = 16;
};
#cursorTheme = {
# name = "Bibata-Modern-Ice";
# package = pkgs.bibata-cursors;
# size = 16;
#};
#font = {
# name = "Iosevka Nerd Font";
# package = pkgs.nerdfonts.override {fonts = ["Iosevka"];};

View File

@@ -1,7 +0,0 @@
{ ... }:
{
imports =
[(import ./steam.nix)]
++ [(import ./gaming_pkgs.nix)];
}

View File

@@ -1,7 +0,0 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
snes9x-gtk
];
}

View File

@@ -1,6 +0,0 @@
{...}: {
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
};
}