From a50d842d23e4362e6c0801715859ef74c21a07c4 Mon Sep 17 00:00:00 2001 From: CherryKitten Date: Tue, 17 Sep 2024 12:19:17 +0200 Subject: [PATCH] add some packages to tabby --- hosts/tabby/default.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/hosts/tabby/default.nix b/hosts/tabby/default.nix index 51f999e..f589949 100644 --- a/hosts/tabby/default.nix +++ b/hosts/tabby/default.nix @@ -2,7 +2,7 @@ # your system. Help is available in the configuration.nix(5) man page, on # https://search.nixos.org/options and in the NixOS manual (`nixos-help`). -{ pkgs, lib, inputs, ... }: { +{ pkgs, pkgs-unstable, lib, inputs, ... }: { imports = [ ../../profiles/desktop ./hardware-configuration.nix @@ -33,12 +33,20 @@ picard discord inkscape - osu-lazer-bin + pkgs-unstable.osu-lazer-bin ]; programs.steam = { enable = true; }; + hardware.steam-hardware.enable = true; + services.usbmuxd.enable = true; + + environment.systemPackages = with pkgs; [ + libimobiledevice + ifuse # optional, to mount using 'ifuse' +]; + system.stateVersion = "24.05"; # Did you read the comment? }