From c0be2affd593a8e5c2abdf6ab2c56bdba3e46b14 Mon Sep 17 00:00:00 2001 From: Devin Finlinson Date: Thu, 26 Mar 2026 10:33:03 -0600 Subject: move gaming packages out of work computer --- home-manager/gaming.nix | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 home-manager/gaming.nix (limited to 'home-manager/gaming.nix') diff --git a/home-manager/gaming.nix b/home-manager/gaming.nix new file mode 100644 index 0000000..ffd4182 --- /dev/null +++ b/home-manager/gaming.nix @@ -0,0 +1,42 @@ +{ config, pkgs, ... }: +# let +# home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/release-23.05.tar.gz"; +# unstable = import {}; +# in +{ + imports = [ + ./home.nix + ]; + + # home-manager.users.defin= { + home = { + # Home Manager needs a bit of information about you and the paths it should + # manage. + username = "defin"; + homeDirectory = "/home/defin"; + + # The home.packages option allows you to install Nix packages into your + # environment. + packages = with pkgs; [ + # # It is sometimes useful to fine-tune packages, for example, by applying + # # overrides. You can do that directly here, just don't forget the + # # parentheses. Maybe you want to install Nerd Fonts with a limited number of + # # fonts? + # (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; }) + + r2modman + marble-marcher-ce + prismlauncher + luanti + lutris + heroic + wineWowPackages.waylandFull + + element-desktop + signal + ]; + + # Let Home Manager install and manage itself. + # home-manager.enable = true; + }; +} -- cgit v1.2.3