home/programs/games: add umu-launcher

This commit is contained in:
Anthony Rodriguez 2024-10-14 17:24:05 +02:00
parent ddd83c3998
commit 23b8fd005c
Signed by: nezia
GPG key ID: EE3BE97C040A86CE
3 changed files with 36 additions and 1 deletions

View file

@ -2513,6 +2513,7 @@
"plasma-manager": "plasma-manager", "plasma-manager": "plasma-manager",
"systems": "systems_4", "systems": "systems_4",
"treefmt-nix": "treefmt-nix", "treefmt-nix": "treefmt-nix",
"umu": "umu",
"wezterm": "wezterm" "wezterm": "wezterm"
} }
}, },
@ -2674,6 +2675,30 @@
"type": "github" "type": "github"
} }
}, },
"umu": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"dir": "packaging/nix",
"lastModified": 1728918416,
"narHash": "sha256-IGiaUXA1acNjVdKijIlvImCZ63X/BAmr+X1PPa+6URs=",
"ref": "refs/heads/main",
"rev": "f21c7e651bf8dcaab391e614f3bb15fc3557c94b",
"revCount": 771,
"submodules": true,
"type": "git",
"url": "https://github.com/Open-Wine-Components/umu-launcher/"
},
"original": {
"dir": "packaging/nix",
"submodules": true,
"type": "git",
"url": "https://github.com/Open-Wine-Components/umu-launcher/"
}
},
"utils": { "utils": {
"locked": { "locked": {
"lastModified": 1656928814, "lastModified": 1656928814,

View file

@ -66,6 +66,11 @@
url = "github:sodiboo/niri-flake"; url = "github:sodiboo/niri-flake";
}; };
umu = {
url = "git+https://github.com/Open-Wine-Components/umu-launcher/?dir=packaging\/nix&submodules=1";
inputs.nixpkgs.follows = "nixpkgs";
};
treefmt-nix.url = "github:numtide/treefmt-nix"; treefmt-nix.url = "github:numtide/treefmt-nix";
nixos-hardware.url = "github:NixOS/nixos-hardware"; nixos-hardware.url = "github:NixOS/nixos-hardware";

View file

@ -1,4 +1,8 @@
{pkgs, ...}: { {
pkgs,
inputs,
...
}: {
home.packages = with pkgs; [ home.packages = with pkgs; [
protonup-qt protonup-qt
bottles bottles
@ -10,6 +14,7 @@
xdotool xdotool
xorg.xwininfo xorg.xwininfo
yad yad
inputs.umu.packages.${pkgs.system}.umu
]; ];
programs.mangohud.enable = true; programs.mangohud.enable = true;
} }