add some packages to tabby

This commit is contained in:
CherryKitten 2024-09-17 12:19:17 +02:00
parent 480c28581e
commit a50d842d23
Signed by: sammy
GPG key ID: 98D8F75FB0658276

View file

@ -2,7 +2,7 @@
# your system. Help is available in the configuration.nix(5) man page, on # 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`). # https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{ pkgs, lib, inputs, ... }: { { pkgs, pkgs-unstable, lib, inputs, ... }: {
imports = [ imports = [
../../profiles/desktop ../../profiles/desktop
./hardware-configuration.nix ./hardware-configuration.nix
@ -33,12 +33,20 @@
picard picard
discord discord
inkscape inkscape
osu-lazer-bin pkgs-unstable.osu-lazer-bin
]; ];
programs.steam = { programs.steam = {
enable = true; 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? system.stateVersion = "24.05"; # Did you read the comment?
} }