Files
nixos-config/modules/wm/steam/home.nix
2026-04-26 10:27:50 +02:00

30 lines
415 B
Nix

#
# Gnome NixOS & Home manager configuration
#
# flake.nix
# ├─ ./hosts
# │ └─ ./steamdeck
# │ └─ home.nix
# └─ ./modules
# └─ ./desktop
# └─ ./steam
# └─ home.nix *
#
{
config,
lib,
pkgs,
...
}: {
home = {
packages = with pkgs; [
steam
jq
appimage-run
zenity
unzip
fuse
];
};
}