Adding flatpak support

This commit is contained in:
Lyes Saadi 2024-05-04 21:38:48 +02:00
parent bda83fc5d0
commit 8475ddf66b
No known key found for this signature in database
GPG key ID: 17418538BAA17767
3 changed files with 26 additions and 3 deletions

View file

@ -22,4 +22,10 @@
};
};
};
# Protonup config
home.sessionVariables = {
STEAM_EXTRA_COMPAT_TOOLS_PATHS =
"\${HOME}/.steam/root/compatibilitytools.d";
};
}

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, lib, ... }:
let
tex = (pkgs.texlive.combine { inherit (pkgs.texlive)
@ -28,7 +28,6 @@ in {
# Games
# citra-canary
steam
minecraft
vvvvvv
@ -48,6 +47,7 @@ in {
# Programming
git
git-lfs
vscode
ocaml
ledit
@ -68,4 +68,19 @@ in {
pulseaudio
libopus
];
# Flatpaks
services.flatpak.remotes = lib.mkOptionDefault [{
name = "gnome-nightly";
location = "https://nightly.gnome.org/gnome-nightly.flatpakrepo";
}];
services.flatpak.packages = [
"com.github.muriloventuroso.pdftricks"
"app.drey.Damask"
"dev.tchx84.Gameeky"
"dev.tchx84.Gameeky.FreedomValley"
"dev.tchx84.Gameeky.Blasterman"
"dev.tchx84.Gameeky.Wackman"
];
}