summaryrefslogtreecommitdiff
path: root/home-manager/gaming.nix
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2026-03-28 00:38:51 -0600
committerDevin Finlinson <devin.finlinson@pm.me>2026-03-28 00:38:51 -0600
commitcf31c63d296c728f5431bf8af0e7df80eb295bca (patch)
tree7441f65e3085ac0287b6d50b5008bca24d0e7571 /home-manager/gaming.nix
parent3dc828a8ed3809ea373245696e44f23ad15cd958 (diff)
parentc0be2affd593a8e5c2abdf6ab2c56bdba3e46b14 (diff)
Merge branch 'master' of ssh://bosco:/srv/git/.flake
Diffstat (limited to 'home-manager/gaming.nix')
-rw-r--r--home-manager/gaming.nix42
1 files changed, 42 insertions, 0 deletions
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 <nixpkgs-unstable>{};
+# 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;
+ };
+}