nixos-config/modules/wm/steam/home.nix
Kabbone d16898adf8
flake update
comment out freecad because pyside is broken
set python311 to fix nose dependency in unstable
2024-07-13 12:01:05 +02:00

27 lines
408 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
];
};
}