add some packages to tabby
This commit is contained in:
parent
480c28581e
commit
a50d842d23
1 changed files with 10 additions and 2 deletions
|
@ -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?
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue