added flatpak and moved FAF dependencies

This commit is contained in:
caleb 2024-03-15 23:20:32 -04:00
parent 4ff0678316
commit b4a083ce1f
2 changed files with 23 additions and 3 deletions

View File

@ -19,9 +19,9 @@
gparted
hashcat
# FAF
jq
cabextract
##flatpak
flatpak
gnome.gnome-software
];
};
@ -45,4 +45,7 @@
# yubikey
services.pcscd.enable = true;
# flatpak for bluebubbles client
services.flatpak.enable = true;
}

17
faf-linux.nix Normal file
View File

@ -0,0 +1,17 @@
{ lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
git
wget
jq
cabextract
gnupatch
libpulseaudio
haskellPackages.freetype2
xorg.libXcomposite
xorg.libXrandr
xorg.libXfixes
xorg.libXcursor
xorg.libXi
];
}