summaryrefslogtreecommitdiff
path: root/home-manager/gaming.nix
blob: ffd4182c9a3ef9463ee0fe7e93180abd369af59e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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;
    };
}