pearl: setup

This commit is contained in:
Daniel Lundin 2024-09-03 19:07:26 +02:00
commit d3be213bd8
Signed by: dln
SSH key fingerprint: SHA256:Vhqxf7VIXwfS0r2j6bJiJ5A+hjhzMODtihuHIybqf3s
3 changed files with 67 additions and 20 deletions
hosts/pearl

37
hosts/pearl/apps.nix Normal file
View file

@ -0,0 +1,37 @@
{
lib,
pkgs,
...
}:
{
programs.firefox.enable = true;
environment.systemPackages = with pkgs; [
calibre
gimp
gnomeExtensions.emoji-copy
gnomeExtensions.just-perfection
gnomeExtensions.vitals
gnome-pomodoro
gnome-tweaks
hitori
inkscape
krita
moonlight-qt
obsidian
pavucontrol
plexamp
signal-desktop
];
environment.gnome.excludePackages =
[
];
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
};
}