dot_testing/boxes/xps.nix

25 lines
407 B
Nix
Raw Normal View History

2023-07-16 07:51:01 -05:00
{ lib, config, pkgs, ...}:
{
imports = [
2023-08-01 15:50:52 -05:00
../common/desktop.nix
2023-08-13 08:49:35 -05:00
../common/steam.nix
2023-07-16 07:51:01 -05:00
];
2023-08-06 22:13:04 -05:00
environment.systemPackages = with pkgs; [
xbrightness
2023-08-13 08:49:35 -05:00
gnome.cheese
musescore
magic-wormhole
libsForQt5.kdenlive
calcurse
2023-08-06 22:13:04 -05:00
];
services.tlp.enable = true;
2023-08-03 23:01:24 -05:00
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2023-07-16 07:51:01 -05:00
networking.hostName = "xps";
}